Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 897 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 897 Bytes

resilient-lane

Resilient Lane County

Run the backend locally

MacOS

source ../env/bin/activate && ./manage.py runserver

Windows

.\env_20220114\Scripts\activate && .\manage.py runserver

Run the frontend locally

cd frontend && quasar dev

Setting up the backend for the first time

  1. Ensure that .env file is in place (in OneDrive). Ensure settings are such that sqlite db is used
  2. Run migrations MacOS ./manage.py migrate Windows .\manage.py migrate
  3. Create a superuser MacOS ./manage.py createsuperuser --username=dwilsonsu Windows .\manage.py createsuperuser --username=dwilsonsu

Setting up the frontend for the first time