- 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.gitcd frontendnpm install
npm run devcd ..
cd backendpython3 -m venv venvActivate the virtual environment. The activation command varies depending on your operating system:
On Windows:
venv\Scripts\activateOn macOS/Linux:
source venv/bin/activateInstall Flask along with any other necessary packages:
pip install -r requirements.txtTo start the Flask development server, use the following command within the backend directory:
python main.py