Agents is a full-stack application that consists of a frontend built with React and a backend powered by Node.js. This project serves as a template for developing applications that require both client-side and server-side functionality.
The project is organized into two main directories: frontend and backend.
- Framework: React
- Build Tool: Vite
- Source Code: Located in the
srcdirectory - Static Assets: Located in the
publicdirectory
- Framework: Node.js
- Server Setup: Defined in
server.js - Environment Variables: Managed through the
.envfile
- Navigate to the
frontenddirectory:cd frontend - Install dependencies:
npm install - Start the development server:
npm run dev
- Navigate to the
backenddirectory:cd backend - Install dependencies:
npm install - Start the server:
node server.js
- Access the frontend application at
http://localhost:3000(or the port specified in your Vite configuration). - The backend API can be accessed at
http://localhost:5000(or the port specified in your server configuration).
Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for more details.