All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 1m35s
This reverts commit 302b55b346.
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
# --- Docker Compose Variables ---
|
|
# Registry where your images will be pushed (e.g., gitea.yourdomain.com)
|
|
REGISTRY=gitea.local
|
|
# The repository name in Gitea (e.g., your-username/graph)
|
|
IMAGE_NAME=your-username/graph
|
|
|
|
# --- Database Credentials ---
|
|
# Change these in production!
|
|
POSTGRES_USER=graphuser
|
|
POSTGRES_PASSWORD=super_secret_password_here
|
|
POSTGRES_DB=graphdb
|
|
|
|
# --- Application Security ---
|
|
# The API key used by n8n to authenticate with the backend
|
|
API_KEY=nexstar_secret_key_123
|
|
N8N_WHATSAPP_TRIGGER_URL=https://n8n.example.com/webhook/whatsapp-stock
|
|
|
|
# --- Dashboard Login Credentials ---
|
|
ADMIN_EMAIL=admin@admin.com
|
|
ADMIN_PASSWORD=admin123
|
|
JWT_SECRET=super_secret_jwt_key_123
|
|
|
|
# --- CAPTCHA / Bot Protection (Optional) ---
|
|
# Create keys in Cloudflare Turnstile and set both values in production.
|
|
# When TURNSTILE_SECRET is empty, backend CAPTCHA enforcement is disabled.
|
|
TURNSTILE_SECRET=
|
|
|
|
# --- Frontend Configuration (Optional) ---
|
|
# If you need to override the API URL for the frontend
|
|
# VITE_API_URL=/api
|
|
# Cloudflare Turnstile site key shown on the login page
|
|
VITE_TURNSTILE_SITE_KEY=
|