Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 879 Bytes

File metadata and controls

23 lines (18 loc) · 879 Bytes

Python, Django Backend App

Django CI Python Version Django Version Django Rest Framework Version

Run it locally

$ cp .env.example .env
$ pip install -r requirements.txt
$ python manage.py migrate
$ python manage.py loadletsfixtures
$ python manage.py runserver

visit: http://localhost:8000/

Run Tests

Run the following in your terminal:

  • to run unittests: ./manage.py test
  • to run functional tests: pytest