Brooklyn College Hackathon Project
To install the required components to run the project, follow the steps
-
Install node (if not already installed). Check your installation by typing
node -vin your terminal -
Install python (if not already installed). Check your installation by typing
pythonin your terminal -
Type the following on your terminal
cd backend
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
uvicorn main:app --reload
cd frontend
npm install next react react-dom --legacy-peer-deps
npm run dev