Clone this project
create .env file in the backend directory and add your env variable
SECRET_KEY= 'it is a secret'create virtual environment
python -m venv venvactivate virtual environment
# for windows
venv\scripts\activate
# for mac
venv/bin/activate
# for linux
source venv/bin/activatecreate a folder name "migrations" inside the "app" folder & also create a "init.py" file inside the "migrations"
migrations
__init__.pyinstall dependencies
pip install -r requirements.txtmigrate models
python manage.py makemigrations
python manage.py migraterun server
python manage.py runserver