Backend for portfolio related functionality
Clone the project
git clone https://github.com/agapanto/portfolio-backendCreate a virtualenv with python3
mkvirtualenv portfolio-backend --python=$(which python3)Install the required packages
pip install -r requirements.txtSet all required env vars: You can execute the following cp command or set the env vars by yout own(with an export command).
cp .env.dist .envRun the app with honcho: This is a Procfile based project so you can start all the workers with the following command
honcho start