django-admin startproject --template https://github.com/Bindeep/api-template/archive/master.zip <project_name>
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements/dev.txt
Copy env.sample.py file and create env.py with its content inside settings folder config folder
go inside project folder and make sure environment is activated
python manage.py migrate
python manage.py createsuperuser
fill all inputs to create superuser
python manage.py runserver