python 2.7 on Flask
prerequisite
- virtualenv
- pip
steps
- clone the repo
git clone [email protected]:creadr/creadr-api.git
cd creadr-api- set up virtual env
virtualenv ~/.venv/creadr-api
. ~/.venv/creadr-api/bin/activate- install dependencies
pip install -r requirements.txt- run test
./manage.py test- run server locally
./manage.py runserver