• NOD Backend

Installation

  1. 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
  2. Apply migrations:

    python manage.py migrate
    python manage.py migrate --run-syncdb
    python manage.py makemigrations
  3. Create a superuser:

    python manage.py createsuperuser
  4. Run the development server:

    python manage.py runserver