Back to Docs

Configuration

Configuration Files

Config Location

  • Linux/macOS: ~/.botatos/botatos.json
  • Windows: %APPDATA%\botatos\botatos.json
  • Custom: BOTATOS_CONFIG_DIR=/path/to/dir

Environment Variables

| Variable | Description | Default | |----------|-------------|---------| | BOTATOS_GATEWAY_TOKEN | API access token | (random) | | BOTATOS_GATEWAY_PORT | Gateway HTTP port | 18789 | | BOTATOS_BRIDGE_PORT | Bridge WebSocket port | 18790 | | BOTATOS_CONFIG_DIR | Config directory | ~/.botatos | | BOTATOS_MODEL | Default AI model | gpt-4o-mini |

Docker Deployment

services:
  botatos:
    image: botatos/botatos
    ports: ["18789:18789"]
    volumes:
      - ~/.botatos:/home/node/.botatos
    environment:
      BOTATOS_GATEWAY_TOKEN: your-secret-token
Configuration | Botatos