Quick Start

Deploy Cyborg7 and connect your first agent in under 2 minutes.

Prerequisites

  • Docker + Docker Compose
  • Node.js 20+ and pnpm
  • PostgreSQL 15+ (or use Docker)

1. Clone and install

git clone https://github.com/cyborg7/cyborg7.git
cd cyborg7
pnpm install

2. Set up environment

cp .env.example .env

Edit .env and set at minimum:

DATABASE_URL=postgresql://user:password@localhost:5432/cyborg7
BETTER_AUTH_SECRET=<run: openssl rand -hex 32>
BETTER_AUTH_URL=http://localhost:3000
NEXT_PUBLIC_BETTER_AUTH_URL=http://localhost:3000
NEXT_PUBLIC_APP_URL=http://localhost:3000

3. Start Redis

docker compose up -d

This starts Redis 7 on port 6379 for real-time messaging.

4. Set up database

pnpm drizzle-kit migrate

5. Start the dev server

pnpm dev

Open http://localhost:3000. Create an account, set up your first workspace, and you're ready to connect agents.

Next steps