Make sure you have Python 3.12.0 installed on your computer. If yes, you need to install the required packages. To do this, run the following command in terminal inside the project directory:
pip install -r requirements.txt  
Make the migrations and migrate the database:
python manage.py makemigrations  
python manage.py migrate  
To create superuser:
python manage.py createsuperuser  
To run the application run the following command in terminal inside the project directory:
python manage.py runserver