- Clone this repository
- Follow the steps (in order as listed below):
cd {{ repo_location_on_your_drive }}/frontend
npm install
npm run build
npm run build
cd {{ repo_location_on_your_drive }}
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip
pip install -r requirements.txt
python manage.py migrate
python manage.py createsuperuser
cd {{ repo_location_on_your_drive }}
python manage.py runserver
Verify the deployment by navigating to your server address in your preferred browser.
http://127.0.0.1:8000 OR
http://localhost:8000