-
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdev.env.example
More file actions
39 lines (35 loc) · 1.08 KB
/
dev.env.example
File metadata and controls
39 lines (35 loc) · 1.08 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
29
30
31
32
33
34
35
36
37
38
39
DEBUG=True
SECRET_KEY=foo
# Database Configuration
# Supports both CloudNativePG (Kubernetes service) and AWS RDS (external host)
SQL_ENGINE=django.db.backends.postgresql
SQL_DATABASE=balancer_dev
SQL_USER=balancer
SQL_PASSWORD=balancer
# Connection Type Examples:
#
# CloudNativePG (Kubernetes service within cluster):
# SQL_HOST=balancer-postgres-rw
# SQL_HOST=balancer-postgres-rw.balancer.svc.cluster.local
# (SSL typically not required within cluster)
#
# AWS RDS (External database):
# SQL_HOST=balancer-db.xxxxx.us-east-1.rds.amazonaws.com
# (SSL typically required - set SQL_SSL_MODE if needed)
#
# Local development:
# SQL_HOST=localhost
# SQL_HOST=db # Docker Compose service name
SQL_HOST=db
SQL_PORT=5432
# Optional: SSL mode for PostgreSQL connections
# Options: disable, allow, prefer, require, verify-ca, verify-full
# Default: require for external hosts (AWS RDS), disabled for CloudNativePG
# SQL_SSL_MODE=require
LOGIN_REDIRECT_URL=
CORS_ALLOWED_ORIGINS=http://localhost:3000
OPENAI_API_KEY=
ANTHROPIC_API_KEY=
PINECONE_API_KEY=
EMAIL_HOST_USER=
EMAIL_HOST_PASSWORD=