- Make sure you have installed python and node js in your system.
- Activate python virtual envrironment in Backend folder, install packages in requirements.txt file and then run run.py file to activate backend.
- In Frontend folder install the dependencies and then run the server to activate frontend.
# follow below lines in terminal to initialize project
cd Backend
python -m venv venv
venv/scripts/activate
pip install -r requirements.txt
python run.py
cd ..
cd Frontend
npm install
npm run serve