- Create your virtual environment and activate
- Install latest version of django using
pip install django
- create new project using command below
django-admin startproject --template=https://github.com/russell310/myproject/archive/master.zip project_name
- Install requirements
pip install -r requirements.txt
- rename
.env.example
to.env
with your own setup details python manage.py migrate
python manage.py runserver
- For strong SECRET_KEY: https://www.miniwebtool.com/django-secret-key-generator/
- For Postgresql replace in .env DATABASE_URL = postgres://username:password@localhost:5432/database_name