Install Dependencies and Project
python3 -m venv ~/.virtualenvs/him_database
source ~/.virtualenvs/him_database/bin/activate
git clone git clone https://github.com/ncrmro/him_database
pip3 install requirements/development.txt
Run Migrations and Start Web Server
cd src
python3 manage.py migrate
python3 manage.py runserver
Run Tests and Lint
python3 manage.py test --settings=him_database.settings.testing
prospector
See Heroku for more.