21 lines
580 B
Plaintext
21 lines
580 B
Plaintext
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/handy
|
|
HANDY_MASTER_SECRET=your-super-secret-key-for-local-development
|
|
PORT=3005
|
|
|
|
# Metrics server configuration
|
|
METRICS_ENABLED=true
|
|
METRICS_PORT=9090
|
|
|
|
# Uncomment to enable centralized logging for AI debugging (creates .logs directory)
|
|
DANGEROUSLY_LOG_TO_SERVER_FOR_AI_AUTO_DEBUGGING=true
|
|
|
|
# --- Local S3/MinIO ---
|
|
# Defaults for local MinIO started via `yarn s3`
|
|
S3_HOST=localhost
|
|
S3_PORT=9000
|
|
S3_USE_SSL=false
|
|
S3_ACCESS_KEY=minioadmin
|
|
S3_SECRET_KEY=minioadmin
|
|
S3_BUCKET=happy
|
|
S3_PUBLIC_URL=http://localhost:9000/happy
|