Provides a complete and standard data store for canonical and emerging skills, knowledge, abilities, tools, technolgies, and how they relate to jobs.
TODO - Write a sweet, sweet overview of the API
The following endpoints were automatically deployed via the Zappa framework to Amazon Web Services.
- https://vhbg2y4qug.execute-api.us-east-1.amazonaws.com/dev/jobs
- https://vhbg2y4qug.execute-api.us-east-1.amazonaws.com/dev/skills
- Python 2.7.11
To run the API locally, please perform the following steps:
- Clone the repository from https://www.github.com/dssg/skills-api
$ git clone https://www.github.com/dssg/skills-api
- Navigate to the checked out project
$ cd skills-api
- Ensure that pip package manager is installed. See installation instructions here.
$ pip --version
- Install the
virtualenv
package. Please review the documentation if you are unfamiliar with howvirtualenv
works.
$ pip install virtualenv
- Create a Python 2.7.11 virtual environment called
venv
in the project root directory
$ virtualenv -p /path/to/python/2.7.11 venv
- Activate the virtual environment. Note that the name of the virtual environment (
venv
) will be appended to the front of the command prompt.
$ source venv/bin/activate
(venv) $
- Install dependencies from
requirements.txt
$ pip install -r requirements.txt
TODO - Write some deployment instructions here
TODO - Write some dependencies.