-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (22 loc) · 753 Bytes
/
.env.example
File metadata and controls
26 lines (22 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# Backend Environment Variables
PORT=3001
GITHUB_WEBHOOK_SECRET=your_github_webhook_secret_here
GITHUB_CLIENT_ID=your_github_oauth_client_id
GITHUB_CLIENT_SECRET=your_github_oauth_client_secret
FRONTEND_URL=http://localhost:5173
# PostgreSQL (used by Docker Compose)
POSTGRES_USER=ops_user
POSTGRES_PASSWORD=ops_password
POSTGRES_DB=ops_sentinel
RETENTION_DAYS=30
# Notifications (Optional)
ALERT_EMAIL_TO=alerts@example.com
SMTP_HOST=smtp.example.com
SMTP_PORT=587
SMTP_USER=user
SMTP_PASS=pass
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/...
TEAMS_WEBHOOK_URL=https://your-domain.webhook.office.com/...
# Frontend Environment Variables (in frontend/.env)
VITE_GITHUB_CLIENT_ID=your_github_oauth_client_id
VITE_API_URL=http://localhost:3001