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