Skip to content

Latest commit

 

History

History
34 lines (33 loc) · 674 Bytes

README.md

File metadata and controls

34 lines (33 loc) · 674 Bytes

Requirements:

  • Python 3.8
  • Other dependencies in Pipfile

Steps to setup locally:

  • Install pipenv for dependency management
    pip install pipenv
    
  • Use pipenv to install other dependencies from Pipfile
    pipenv install --dev
    
  • Activate the new virtual environment
    pipenv shell
    
  • Copy .env file
    cp .env.example .env
    
  • Make database migrations
    python manage.py makemigrations
    python manage.py migrate
    
  • Create a superuser
    python manage.py createsuperuser
    
  • Run development server on localhost
    python manage.py runserver :8000