cd backend
- To install all the required dependencies use command:-
python -m pip install -r requirements.txt
OR - if the above command doesn't works you may use
pip install -r requirements.txt
. python -m ensurepip --upgrade
.- To make migrations use
python manage.py makemigrations
. - To migrate changes use
python manage.py migrate
. - To run the backend server use
python manage.py runserver
. - open URL http://127.0.0.1:8000/admin to check the running server and login using credentials username:
9876543210
and password :9876543210
. - After logging in you can see all the database tables which are used in the project.
cd frontend
.- To install all the required dependencies use command :-
npm install
. OR - If the above command doesn't work use
npm i
. - Then to run the frontend server use the command
npm start
.