for usage follow the steps:
-
install python>= 3.8
-
go to the project directory (DSS folder) and run command:
- python -m venv venv
-
activate the virtual environment:
- source venv/bin/activate (on linux)
- venv/bin/activate.batch (windows I guess)
-
install requirements using the following commands:
- pip install -r requirements.txt
-
run the following command:
- python manage.py makemigrations
- python manage.py migrate
-
run the server:
- python manage.py runserver localhost:8000
-
open browser and go to http://localhost:8000/
Voila ! ! !