This is a full stack application with separate client and server components.
- Node.js installed on your machine (download here)
- npm (Node Package Manager) installed globally
-
Clone the repository to your local machine:
git clone <repository_url>
-
Navigate to the server directory:
cd server
-
Install server dependencies:
npm install
-
Navigate to the client directory:
cd ../client
-
Install client dependencies:
npm install
-
Start the server:
cd ../server npm start
This will start the Node.js server.
-
Start the client:
cd ../client npm run dev
This will start the React development server.
-
Open your browser and navigate to http://localhost:5173 to view the app.