-
Clone the repository:
git clone git@github.com:eliataylor/nod-backend.git nod_backend cd nod_backend python3.9 -m venv .venv source .venv/bin/activate # On Windows use `env\Scripts\activate` pip install -r requirements.txt
-
Apply migrations:
python manage.py migrate python manage.py migrate --run-syncdb python manage.py makemigrations
-
Create a superuser:
python manage.py createsuperuser
-
Run the development server:
python manage.py runserver