This is a site done in Django
-
Create a virtual environment
python -m venv venv
-
Activate the virtual environment
-
Linux:
source venv/bin/activate -
Windows:
venv/Scripts/activate
-
-
Install the project requirements
pip install -r requirements.txt
-
Prepare database migrations
python manage.py makemigrations
-
Apply database migrations
python manage.py migrate
-
Run the site server on your local host
python manage.py runserver