tpot-api is a framework for a web service that provides an API for aggregated TPOT outcomes. The default setting for the server is Heroku with Heroku Postgres database. The goal is for every institution to have an easy deployment for their TPOT outcomes that could be used in more sophisticated tools, analyses and downstream applications by developers.
live demo (We initially called it ETP-API)
The API spec can be publicly viewed here and is hosted here.
The folder .openapi was generated automatically by SwaggerHub. We have set up Github Sync for the API spec on Swaggerhub. It promises to automatically update the spec on Github with changes done in SwaggerrHub. The API design and documentation process, therefore, is that all stakeholders collaborate on SwaggerHub and the update is synced on Github upon save.
NB
We noted however that this integration is still buggy (It doesn't sync with Github on save). The integration works well for setting up this workflow for a new repo. So we activated Github Push for the syncing. The spec file is at .openapi/swagger.yaml.
For a similar workflow, you'll find that the docs in Github Push and Github Sync are quite straight forward.
Be sure to set:
- a separate branch other that the main ones (In our case we chose SWAGGERHUB)
- swagger output folder as
.openapiand - swagger file as
swagger.yaml
- Have
dockerinstalled - Run
docker-compose upand get to localhost:8080 - To stop this server, enter
Ctrl+C
One-click deploy
Quick Start for Developers
- Have a Heroku account.
- Have Heroku CLI installed.
- Have a
data.csvfile in/deploydirectory that matches the schema asexample_data.csvin/testdirectory.
tpot-api is available through cloning the repository and then working from the repository root.
git clone https://github.com/workforce-data-initiative/tpot-api.git
cd tpot-apitpot-api depends on python3, so create a virtual environment using a python3 executable. Then activate the virtualenv.
virtualenv venv -p /usr/bin/python3
source venv/bin/activateInstall requirements.
pip install -r requirements.txtnosetests --with-coverage -v --cover-package=tpot_apiRun the deploy.sh and enter the right information for Heroku username and password. The tpot-api server will be deployed on Heroku.
./deploy.shHabitat helps package an app or service into containers that can be run in any infrastructure, without committing to a specific container format or platform.
To install habitat, simply download the binary.
- Unzip
habinto/usr/local/bin. To do this:- Unzip the downloaded folder
- Navigate to the unzipped folder by running
cdfollowed by the file location- For example:
cd /Users/Rachel/Downloads/hab-0.28.0-20170729010833-x86_64-darwin(If you're using a Mac, you can insert the location by dragging the unzipped file into the terminal)
- For example:
- Run
cp hab /usr/local/bin- If you receive an error saying Permission Denied, run
sudo cp hab /usr/local/bin
- If you receive an error saying Permission Denied, run
- Run
sudo chmod a+x habto make it executable. - You'll also need docker installed if on Mac. Find docker here
- To confirm if habitat is installed, re-open your terminal and type
habthen press enter. You should see a list menu with all the habitat options available. Moving on swiftly!
- Run
hab setupand set the origin name tobrighthive. - Go to Settings on your github account and create a Personal Access Token under Developer Settings. Here's a link to get you there.
The GitHub personal access token needs information provided from the user:email and read:org OAuth scopes. Habitat uses the information provided through these scopes for authentication and to determine features based on team membership.
This is how it should look like when running the setup:

- Cd into the repo's directory
cd tpot-api- Enter the habitat studio
hab studio enterThis is an awesome isolated environment for building great things so that when building, it doesn't affect anything on your computer. Let's go ahead and build the tpot-api!
- Inside the studio, run the
buildcommand to execute the tpot-api plan
[5][default:/src:0]# buildWhen finished building, you should see this message
tpot-api: I love it when a plan.sh comes together.
The build bundles up the tpot-api source code, dependencies, runtime and other server configurations into a habitat .hart package. This package can now be exported to docker.
In linux environments, the package can then be run directly using this simple command:
$ hab start brighthive/tpot-apiYou can export the created .hart package into a docker container using the hab pkg export docker command as follows:
[5][default:/src:0]# hab pkg export docker brighthive/tpot-apiAfter exiting the studio by typing exit, run the docker container as follows:
$ docker run -it -p 8080:8080 brighthive/tpot-apiWe're cooking with gas! 🔥 🚀
This project is licensed under the MIT License - see the LICENSE.md file for details.
