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 InstEdCreate a .env file in the root of the project and add the necessary environment variables:
touch .envEdit .env and add the environment variables provided in .env.sample file
Navigate to the required directories and install dependencies:
cd frontend
npm installcd ../backend
npm installcd ../AI-ML
pip install -r requirements.txtNavigate to the ai-backend directory and run:
python app.pyNavigate to the backend directory and run:
npm run serverNavigate to the frontend directory and run:
npm run devOnce all servers are running, you can access the application at:
http://localhost:5173
(or the port specified in your frontend configuration)