Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 565 Bytes

README.md

File metadata and controls

31 lines (25 loc) · 565 Bytes

Crayons

Backend

To setup the backend api, run the following commands

  1. if you don't have a virtualenv setup, create one
virtualenv virtualenv -p python3.5
  1. Install dependencies
make devsetup
  1. Run tests
make tests
  1. Run server
make devserver # to run local django server
make runserver # to run gunicorn server
  1. Other helpful commands
make clean # nuke existing devsetup, will need to run make devsetup again
make coveragereport # will print out a report of test coverage, as per pytest