- Python 3.8+
- Postgres
- Virtualenv and Pip
- First of all clone this Project
- Now go to the project directory
- create a virtual env
pip virtualenv env
- For activate env write on you terminal
source env/bin/activate
(*linux) onenv\Scripts\activate
(Windows) - Install packages
pip install -r requirements.txt
- Run on your terminal
python manage.py migrate
- Run
python manage.py runserver
python manage.py makemigrations
"for migration"python manage.py runserver host:port
"for starting dev. server"python manage.py startapp app_name
"for new app"python manage.py createsuperuser
"For create superuser"