1. Sign up
Currently our service is available by invite only. When you are selected to join our early access user-group you will be sent an invite email containing an api.reconfigure.io
link with a unique invite token. Click on the link and connect your GitHub account to accept the invite. You will then be redirected to our dashboard.
Once you have signed up, move on to install our command line tool, reco
.
2. Install the command line tool
Follow the installation instructions for your operating system:
LinuxRun the following from your terminal, you may be asked to enter your password:curl -LO https://s3.amazonaws.com/reconfigure.io/reco/releases/reco-v0.2.0-x86_64-linux.zip \ && unzip reco-v0.2.0-x86_64-linux.zip \ && sudo mv reco /usr/local/bin
OSXRun the following from your terminal, you may be asked to enter your password:curl -LO https://s3.amazonaws.com/reconfigure.io/reco/releases/reco-v0.2.0-x86_64-apple-darwin.zip \ && unzip reco-v0.2.0-x86_64-apple-darwin.zip \ && sudo mv reco /usr/local/bin
WindowsLaunch Powershell as administrator and paste:Invoke-WebRequest https://s3.amazonaws.com/reconfigure.io/reco/releases/reco-v0.2.0-x86_64-pc-windows.zip -OutFile reco-v0.2.0-x86_64-pc-windows.zip; Expand-Archive -Path reco-v0.2.0-x86_64-pc-windows.zip -DestinationPath C:\reco; setx PATH “$env:path;C:\reco” -m; reco will be available in further sessions of cmd or powershell
3. Authenticate your accountTo authenticate your account, run reco auth
from a terminal and you will be guided through the process – you will need to enter your API key, which you will find on your dashboard.NoteAuthentication must be completed before you can start using reco
.
4. Download the code examplesNext, download the code examples to your workspace by running the following from a terminal:git clone https://github.com/ReconfigureIO/examples.git && cd examples && git checkout v0.3.0
5. Quick startOur parallel histogram example sorts through an array of random values and places them into bins to create a histogram output. To see a hardware simulation of how it runs, navigate to examples/histogram-parallel
and copy and paste the following into a terminal:reco project create histogram reco project set histogram reco test run test–histogram For a more in-depth look, see our tutorial: