-
Clone the project from github
-
Create the virtual environment windows - python -m venv venv mac - python3 -m venv venv
-
Activate the virtual environment windows - .\venv\Scripts\activate.bat mac - source myvenv/bin/activate
-
Install requirements pip install -r requirements.txt After adding a new library/package update the requirements.txt file using pip freeze > requirements.txt
-
Create super user python manage.py createsuperuser
-
Run migrations python manage.py makemigrations python manage.py migrate
-
Run the project python manage.py runserver