Image | Name | |
---|---|---|
Sean Chen 陈笑来 | [email protected] | |
Kai | [email protected] | |
Shirui Chen | [email protected] | |
Ames Gong | [email protected] | |
Ece Yildiz | [email protected] |
This document provides the steps necessary to get the backend and frontend of the project up and running on your local machine.
Before you begin, ensure you have npm
installed on your computer. You can check this by running npm -v
in your terminal. If you do not have npm installed, download and install it from npm's official site.
-
Install Dependencies: Navigate to the backend directory:
cd backend
Then, install the required npm packages:
npm install
-
Start the Development Server: Start the backend server with:
npm run dev
Ensure the backend server is running before starting the frontend.
-
Testing the Development Server
npm run test
-
Install Dependencies: Open a new terminal window and navigate to the frontend directory:
cd frontend
Then, install the required npm packages:
npm install
-
Start the Frontend Application: Start the frontend application with:
npm start
This will launch the application in your default web browser.
Once both the backend and frontend are running, you can access the frontend of the application in your web browser at the default address (usually http://localhost:3000
).
For any additional information on project configuration or troubleshooting, please refer to the project documentation or contact the development team.
testing