AgentCoord/frontend-react

AgentCoord Frontend

This is the frontend for the AgentCoord project. Root project is located here

Installation

You can launch the frontend by simply using docker-compose in the root directory of the project.

Or, you can launch the frontend manually by following the steps below.

  1. Install the dependencies by running npm install.
npm install
  1. Build the frontend by running npm run build.
npm run build
  1. Start the frontend by running npm run serve.
npm run serve

Then you can access the frontend by visiting http://localhost:8080.

Development

You can run the frontend in development mode by running npm run dev.

npm run dev

The frontend website requires the backend server to be running. You can configure the backend server address by copying the .env.example file to .env and changing the API_BASE value to the backend server address.