Skip to content
Getting Started

Getting Started

The fastest way to see Agentgram running is the bundled Docker development environment. It starts the API, a mock agent, Redis, PostgreSQL and a small test frontend.

Requirements

  • Node.js 22+
  • Go 1.25+
  • Docker & Docker Compose

Clone and run

git clone https://github.com/dfradehubs/agentgram.git
cd agentgram
make install      # install web + Go dependencies
make docker-up    # API + mock agent + Redis + PostgreSQL + test frontend

This brings up:

ServiceURL
APIhttp://localhost:8080
Mock agenthttp://localhost:9000
Test frontendhttp://localhost:3001

To run the real web UI against the stack:

make web          # Next.js dev server on http://localhost:3000

Run make help to list every available target.

The development environment runs with authentication disabled so you can try things immediately. Don’t expose it to the public internet — see Configuration to enable Keycloak.

What next?