Skip to content

Quick Start

Sugers edited this page Jun 24, 2026 · 1 revision

Quick Start

Prerequisites

  • Python 3.11+
  • Node.js 18+
  • MySQL 8.0+

One-Click Setup

git clone https://github.com/Sugers955/agent-mill.git
cd agent-mill
cp .env.example .env

Edit .env and set your database credentials:

DB_HOST=localhost
DB_PORT=3306
DB_USER=root
DB_PASSWORD=your_password
DB_NAME=agent_mill
make dev

Access http://localhost:5173 — Login with admin / Admin@2026.

Docker Deployment

docker compose up -d --build

Management Script

./mill start      # Start backend + frontend
./mill stop       # Stop all
./mill status     # View running status
./mill logs       # View backend logs
./mill restart    # Restart all

Clone this wiki locally