Command to Activate the Virtual env-
For Linux Environment & Git Bash on Window
. venv_getnote/Scripts/activate (my virtual env name- venv_getnote)
For Windows-
venv_getnote\Scripts\activate
For Mac-
. venv_getnote/bin/activate or venv_getnote myvenv/bin/activate
To Run django Server- python manage.py runserver
To Run the django Interactive interpreter (shell)- python manage.py shell
Any changes to db/models, run following code
python manage.py makemigrations
python manage.py migrate
Any changes to static files, we need to collect static files (as result your new files will be added to static_cdn folder)
python manage.py collectstatic
To Know the work flow and progress, follow the branch in series