- Add the
.env
file for the project to the root folder , simialr to env.example pipenv shell
pipenv install
python manage.py migrate
python manage.py runserver
- Make your changes
- If database models were changed, run
python manage.py makemigrations
to migrate the project. - Apply database migrations using
python manage.py migrate
if necessary.