50 lines
1.0 KiB
JSON
50 lines
1.0 KiB
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$comment": "Copy to secrets.json and fill in values. NEVER commit secrets.json.",
|
|
|
|
"openrouter": {
|
|
"api_key": "sk-or-v1-..."
|
|
},
|
|
|
|
"tavily": {
|
|
"api_key": "tvly-..."
|
|
},
|
|
|
|
"supabase": {
|
|
"url": "https://your-project.supabase.co",
|
|
"anon_key": "eyJ...",
|
|
"service_role_key": "eyJ..."
|
|
},
|
|
|
|
"auth": {
|
|
"dashboard_password": "change-me-strong-password",
|
|
"jwt_secret": "change-me-64-char-random-string",
|
|
"jwt_ttl_days": 30
|
|
},
|
|
|
|
"console_ssh": {
|
|
"host": "95.216.112.253",
|
|
"port": 22,
|
|
"user": "root",
|
|
"private_key_path": "~/.ssh/your-key"
|
|
},
|
|
|
|
"agent": {
|
|
"default_model": "anthropic/claude-sonnet-4.5",
|
|
"working_dir": "/root",
|
|
"host": "127.0.0.1",
|
|
"port": 3000,
|
|
"max_iterations": 50
|
|
},
|
|
|
|
"production": {
|
|
"ssh": {
|
|
"host": "95.216.112.253",
|
|
"user": "root",
|
|
"identity_file": "~/.ssh/your-key"
|
|
},
|
|
"env_file": "/etc/open_agent/open_agent.env",
|
|
"systemd_service": "open_agent"
|
|
}
|
|
}
|