-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 863 Bytes
/
Copy path.env.example
File metadata and controls
27 lines (21 loc) · 863 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
27
# Database Configuration
POSTGRES_USER=golmanager
POSTGRES_PASSWORD=your_secure_password_here
POSTGRES_DB=golmanager
DATABASE_URL=postgresql://golmanager:your_secure_password_here@db:5432/golmanager
# Session Secret (generate with: openssl rand -hex 32)
SESSION_SECRET=your_session_secret_here
# S3-Compatible Object Storage (Backblaze B2, Wasabi, DigitalOcean Spaces, etc.)
S3_ENDPOINT=https://s3.us-west-001.backblazeb2.com
S3_ACCESS_KEY=your_access_key
S3_SECRET_KEY=your_secret_key
S3_BUCKET=golmanager-assets
S3_REGION=us-west-001
# Optional: If using external PostgreSQL (Neon, Supabase, etc.)
# DATABASE_URL=postgresql://user:password@host:5432/database?sslmode=require
# Domain for SSL certificates
DOMAIN=golmanager.example.com
# Google AI (Gemini) for image analysis
GOOGLE_AI_API_KEY=your_google_ai_api_key
# Node environment
NODE_ENV=production