- Python 3.+
- Venv
Clone this repository and enter the folder. Create a virtual environment.
python3 -m venv venvYou need to activate virtual env:
source venv/bin/activateNow run this command in the terminal to install the required libraries:
pip install -r requirements.txtMigrate the db:
python manage.py makemigrations
python manage.py migrate
For admin panel, first create a superuser:
python3 manage.py createsuperuserStart server:
python3 manage.py runserverGo to http://127.0.0.1:8000/




