Fork of Winform web app design was forked from Winform web app design
Continue chatting to ask questions about or make changes to it.
To run this project, you'll need to set up both the frontend and backend components. Here are the step-by-step instructions:
First, install all the required dependencies for both frontend and backend:
npm installThe application is configured to use MongoDB. You have two options:
.env file with your MongoDB Atlas connection stringThe current .env file is set to:
PORT=5000
MONGODB_URI=mongodb://localhost:27017/classroom-managementIf you're using MongoDB Atlas, replace the MONGODB_URI with your connection string.
Run the following command to start the Express.js backend server:
npm run serverThis will start the server on port 5000 (or the port specified in your .env file).
In a new terminal window, run:
npm run devThis will start the Vite development server for the React frontend.
Once both servers are running, you can access the application in your browser at:
http://localhost:5173The application includes:
Let me know if you need any help with specific parts of the application!