To successfuly run the project follow the steps listed below
- Python
- pip
- NodeJs
-
change directory into the backend folder by running
cd backend
-
install the python virtual env package by running
For linux systems
sudo apt install python3-venv
For Windows systems
pip install virtualenv
-
create a virtual environment by running the following
For linux systems
python3 -m venv venv
For windows systems
python -m virtualenv venv
-
activate the virtual env by running
For linux systems
source venv/bin/activate
For windows systems
.\venv\Scripts\activate
-
install the required packages by running
pip install -r requirements.txt
-
start the applicatipn server by running the following command
python3 server.py
for linux systems andpython server.py
for windows systems
-
In a brand new terminal, change directory to the frontend directory by running
cd frontend
-
Install the required packages by running
npm i
-
Start the fronend server by running
npm run dev
-
Visit http://localhost:3000 to access the frontend and get started.