Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 440 Bytes

File metadata and controls

26 lines (23 loc) · 440 Bytes

Getting Started

  1. Create and start Virtual Enviaronment
  2. Install requirements.txt
pip install -r requirements.txt
  1. Make Migrations
python manage.py makemigrations
python manage.py migrate
  1. Load fixtures data
python manage.py loaddata server/fixtures/initData.json
  1. Start redis server in another terminal
redis-server
  1. Run django server
python manage.py runserver