Get Started
This guide walks you through running auxilia locally with Docker Compose.
Prerequisites
- Docker and Docker Compose
- At least one LLM API key (OpenAI, Anthropic, Google, or DeepSeek)
Clone the Repository
git clone https://github.com/keurcien/auxilia.git
cd auxiliaConfigure Environment
Copy the example environment file and fill in your API keys:
cp .env.example .envEdit .env with your configuration:
# Required: at least one LLM provider
OPENAI_API_KEY=sk-...
ANTHROPIC_API_KEY=sk-ant-...
GOOGLE_API_KEY=...
DEEPSEEK_API_KEY=...Start the Stack
For development with hot-reloading:
make devOr using Docker Compose directly:
docker compose -f docker-compose.dev.yml upFor production:
docker compose up -dAccess the App
Open http://localhost:3000 in your browser. Create an account with email and password to get started.
Next Steps
- Add MCP Servers — Register remote MCP servers for your workspace
- Create an Agent — Set up your first AI assistant
- Configure Tools — Control which tools your agents can use
Last updated on