It is used for the api and the web application
- python v3
- Django v4
- Clone the repository
- setup the virtual env first it can be doing with the following command
On Linux, MacOS:
python3 -m venv env_name
# and activate it by
source env_name/bin/activateOn windows
py -m venv env_name
#activate it by
source env_name/script/activate.batpip install -r requirements.txt python manage.py makemigrations
and
python manage.py migrate python manage.py runserver it running on http:127.0.0.1:8000/
if your system is Linux or MacOS you have to add 3 on python example python3 manage.py runserver