35 lines
975 B
Bash
35 lines
975 B
Bash
# ============================================================
|
|
# Copy this to .env and fill in your values.
|
|
# NEVER commit .env to git.
|
|
# ============================================================
|
|
|
|
# Matrix
|
|
MATRIX_HOMESERVER=https://matrix.example.com
|
|
MATRIX_SERVER_NAME=example.com
|
|
MATRIX_TOKEN_DEVOPS=syt_...
|
|
MATRIX_TOKEN_MONITOR=syt_...
|
|
MATRIX_TOKEN_ASSISTANT=syt_...
|
|
|
|
# Matrix room IDs (!roomid:server)
|
|
MATRIX_ROOM_DEVOPS=!abc123:example.com
|
|
MATRIX_ROOM_ALERTS=!def456:example.com
|
|
MATRIX_ROOM_LOGS=!ghi789:example.com
|
|
MATRIX_ROOM_ADMIN=!xyz000:example.com
|
|
MATRIX_ROOM_AUDIT=!aud001:example.com
|
|
MATRIX_ROOM_AGENTS_INTERNAL=!int002:example.com
|
|
|
|
# LLM providers
|
|
ANTHROPIC_API_KEY=sk-ant-...
|
|
OPENAI_API_KEY=sk-...
|
|
|
|
# SSH
|
|
SSH_PRIVATE_KEY_PATH=/home/deploy/.ssh/id_ed25519
|
|
SSH_MONITOR_KEY_PATH=/home/monitor/.ssh/id_ed25519
|
|
|
|
# Infrastructure hosts
|
|
PROD_HOST_1=10.0.1.10
|
|
PROD_HOST_2=10.0.1.11
|
|
STAGING_HOST=10.0.2.10
|
|
MONITORING_HOST=10.0.3.10
|
|
BASTION_HOST=bastion.example.com
|