-
Create & Activate a virtual environment
python3 -m venv venv
source venv/bin/activate
-
Install the required packages
pip install -r requirements.txt
-
Apply Migrations
python manage.py migrate
-
Create a superuser
python manage.py createsuperuser
65 Run the development server
python manage.py runserver
Create & Activate a virtual environment
python3 -m venv venv
source venv/bin/activate
Install the required packages
pip install -r requirements.txt
Apply Migrations
python manage.py migrate
Create a superuser
python manage.py createsuperuser
65 Run the development server