- Create a venv
python3 -m venv venv
- Activate it
source venv/bin/activate
- Install requirements
pip install -r requirements.txt
- Migrate db
python manage.py migrate
- Create a superuser for yourself
python manage.py createsuperuser --email your@email.com --username yourusername
- Start and go!
python manage.py runserver