python3 -m venv venv
source venv/bin/activate
pip install virtualenv
virtualenv venv
venv\Scripts\activate.bat
pip install --upgrade pip
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
python manage.py runserver
python manage.py shell
from django.core.management.utils import get_random_secret_key
print(get_random_secret_key())
exit()
** This APP is for Education and Practise Purpose Only **