Skip to main content
The fully local deployment keeps all data on your machine. No cloud services, no external databases — just the service and the client UI.

What you get

  • Service running on localhost:3100 with SQLite
  • Client UI on localhost:3000 with Kanban board
  • All messages, tasks, and contacts stored locally
  • No authentication required

Setup

1
Start the service
2
cd service
cp .env.example .env
3
Set the backend to local:
4
BACKEND=local
SQLITE_PATH=./data/openbunny.db
OPENROUTER_API_KEY=sk-or-v1-your-key
OPENROUTER_MODEL=anthropic/claude-sonnet-4
5
npm install && npm run dev
6
Start the client
7
cd client
npm install
npm run dev
Open http://localhost:3000 to access the Kanban board.

When to use this mode

  • Individual use with no need for team access
  • Privacy-sensitive environments where data must stay local
  • Development and testing
  • Quick evaluation of OpenBunny