---
title: "Template Config Mínima — Começar Rápido"
url: "https://openclaw.ia.br/templates/config-minimo/"
markdown_url: "https://openclaw.ia.br/templates/config-minimo.MD"
description: "Configuração mínima funcional do OpenClaw. O básico para começar funcionando."
date: ""
author: ""
---

# Template Config Mínima — Começar Rápido

Configuração mínima funcional do OpenClaw. O básico para começar funcionando.


# Template: Configuração Mínima

```json
{
  "gateway": {
    "port": 18789
  },
  
  "agents": {
    "defaults": {
      "model": {
        "primary": "anthropic/claude-sonnet-4"
      }
    }
  },
  
  "channels": {
    "telegram": {
      "token": "SEU_BOT_TOKEN",
      "allowFrom": ["SEU_USER_ID"]
    }
  },
  
  "heartbeat": {
    "enabled": false
  }
}
```

## Variáveis de Ambiente
```bash
export ANTHROPIC_API_KEY="sk-ant-..."
```

## Para WhatsApp
```json
{
  "channels": {
    "whatsapp": {
      "allowFrom": ["+5511999999999"]
    }
  }
}
```
