Start new project like this
django-admin.py startproject --template=https://github.com/Anc813/project_template/zipball/master project
Rename project to YOUR real projectname. Create your local settings in settings directrory.
replace variables, example
PROJECT_NAME_REPLACE
=my-project
RANDOM_PORT_REPLACE
=65531
VIRTUALENV_HOME_REPLACE
=/root/.virtualenvs/my_project
PROJECT_ROOT_REPLACE
=/var/www/chatgpt-core-backend
Provide readme for your project. Your ready to go. If you wish to make random string for your SECRET_KEY setting, you just need to type the following in interactive mode:
Based on https://github.com/wsvincent/djangox
from django.utils.crypto import get_random_string;get_random_string(100)
or just generate it online (if You are using python 3):