Skip to content

Latest commit

 

History

History
59 lines (48 loc) · 1.51 KB

File metadata and controls

59 lines (48 loc) · 1.51 KB

Agents

Description

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.

Project Structure

The project is organized into two main directories: frontend and backend.

Frontend

  • Framework: React
  • Build Tool: Vite
  • Source Code: Located in the src directory
  • Static Assets: Located in the public directory

Backend

  • Framework: Node.js
  • Server Setup: Defined in server.js
  • Environment Variables: Managed through the .env file

Installation Instructions

Frontend

  1. Navigate to the frontend directory:
    cd frontend
    
  2. Install dependencies:
    npm install
    
  3. Start the development server:
    npm run dev
    

Backend

  1. Navigate to the backend directory:
    cd backend
    
  2. Install dependencies:
    npm install
    
  3. Start the server:
    node server.js
    

Usage

  • 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).

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.

License

This project is licensed under the MIT License. See the LICENSE file for more details.