Skip to content

LCOG/resilient-lane

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

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