-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (24 loc) · 1.27 KB
/
.env.example
File metadata and controls
28 lines (24 loc) · 1.27 KB
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
27
28
# Copy this file to .env and fill in real values
# .env is git-ignored — never commit it
# ── AWS ───────────────────────────────────────────────────────────────────────
AWS_ACCOUNT_ID=your_aws_account_id_here
# ── WAL-G / PITR ─────────────────────────────────────────────────────────────
WALG_S3_PREFIX=s3://your-bucket/walg/prod
WALG_AWS_REGION=ap-south-1
# AWS credentials intentionally omitted — Omnistrate provides IRSA
# WAL-G detects IRSA automatically via the pod's service account token
# ── Backup tuning (optional — defaults shown) ─────────────────────────────────
BACKUP_CRON_SCHEDULE=0 2 * * *
WALG_BACKUP_RETENTION_FULL=7
ARCHIVE_TIMEOUT=60
# ── API (local dev only — not used in production, Omnistrate injects these) ───
DB_USER=app
DB_PASSWORD=your_db_password_here
DB_WRITE_HOST=pgbouncer-write
DB_READ_HOST=pgbouncer-read
DB_PORT=5432
DB_NAME=appdb
DB_WRITE_POOL_SIZE=10
DB_READ_POOL_SIZE=20
PORT=8080
ENV=development