- Python 3.x installed on your system.
- Nodejs version 20.10.0 or above installed on your system
Follow these steps to clone the repository, set up the environment, and run the application:
First, clone the repository from GitHub to your local machine:
git clone https://github.com/DeenankSharma/b27_project.git
cd frontend
npm install
npm run dev
cd ..
cd backend
python3 -m venv venv
Activate the virtual environment. The activation command varies depending on your operating system:
On Windows:
venv\Scripts\activate
On macOS/Linux:
source venv/bin/activate
Install Flask along with any other necessary packages:
pip install -r requirements.txt
To start the Flask development server, use the following command within the backend directory:
python main.py