How to run?
- Clone
git clone
- Install Virtual Env
python -m pip install --user virtualenv
- Setup up Virtual env
python -m venv env
env\Scripts\activate
or
python -m venv env
source env/bin/activate
- Install Dependencies
pip install -r requirements.txt
- Start Migrating and Run Server
python manage.py makemigrations
python manage.py migrate
python manage.py runserver 7000