15 lines
427 B
Bash
15 lines
427 B
Bash
# Database password (change in production!)
|
|
POSTGRES_PASSWORD=changeme
|
|
|
|
# App URL (set to your domain or server IP)
|
|
NEXTAUTH_URL=http://localhost:3000
|
|
|
|
# Auth secret — generate with: openssl rand -base64 32
|
|
NEXTAUTH_SECRET=change-this-to-a-random-string
|
|
|
|
# Port to expose (default 3000)
|
|
PORT=3000
|
|
|
|
# Container Registry Image (Optional, default: checkflow:latest)
|
|
# CHECKFLOW_IMAGE=gitea.example.com/username/checkflow:latest
|