This is a simple guide to setting up and running the application.
Before you start, make sure you have the following installed:
Follow these steps to set up and run the app locally.
git clone https://github.com/luv29/InstEd.git
cd InstEd
Create a .env
file in the root of the project and add the necessary environment variables:
touch .env
Edit .env
and add the environment variables provided in .env.sample file
Navigate to the required directories and install dependencies:
cd frontend
npm install
cd ../backend
npm install
cd ../AI-ML
pip install -r requirements.txt
Navigate to the ai-backend
directory and run:
python app.py
Navigate to the backend directory and run:
npm run server
Navigate to the frontend directory and run:
npm run dev
Once all servers are running, you can access the application at:
http://localhost:5173
(or the port specified in your frontend configuration)