-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
25 lines (20 loc) · 729 Bytes
/
Copy path.env.example
File metadata and controls
25 lines (20 loc) · 729 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
# Environment variables for SusCommunity Docker containers
# Copy this file to .env and update the values
# PostgreSQL Database Configuration
POSTGRES_PASSWORD=your_secure_password_here
POSTGRES_PORT=5432
# Database connection string for Ktor server
DATABASE_URL=jdbc:postgresql://localhost:5432/suscommunity
DATABASE_USER=suscommunity_user
DATABASE_PASSWORD=your_secure_password_here
# pgAdmin Configuration (optional, for development)
PGADMIN_EMAIL=admin@suscommunity.local
PGADMIN_PASSWORD=admin_password
PGADMIN_PORT=5050
# Server Configuration
SERVER_PORT=8081
SERVER_HOST=0.0.0.0
# Google Cloud Configuration (for production deployment)
GCP_PROJECT_ID=your-gcp-project-id
GCP_REGION=us-central1
GCP_ZONE=us-central1-a