-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (22 loc) · 1.45 KB
/
.env.example
File metadata and controls
27 lines (22 loc) · 1.45 KB
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
# ─── Secrets (CHANGE THESE) ───────────────────────
POSTGRES_PASSWORD=change_me_in_production
API_KEY=change_me_generate_with_python_secrets_token_urlsafe_32
# ─── Database ───────────────────────────────────
POSTGRES_USER=dexy_training
POSTGRES_DB=dexy_training
# ─── GPU Configuration ──────────────────────────
CUDA_VISIBLE_DEVICES=0,1
# ─── HotPath Connection ─────────────────────────
# gRPC target for pushing trained artifacts to HotPath engine
# For Docker Desktop (macOS/Windows): host.docker.internal:50051
# For Linux with Coolify: uses extra_hosts in docker-compose
# For remote: your-server.com:50051
HOTPATH_GRPC_TARGET=host.docker.internal:50051
# Enable/disable pushing trained artifacts to HotPath after training
# Set to "false" to disable (e.g., during isolated training runs)
HOTPATH_PUSH_ENABLED=true
# ─── Note ────────────────────────────────────────
# Redis, Celery, and Database URLs are hardcoded in docker-compose.yml
# using internal Docker service names (redis:6379, postgres:5432).
# Do NOT set REDIS_URL, CELERY_BROKER_URL, or DATABASE_URL here —
# they are constructed from POSTGRES_USER/PASSWORD/DB automatically.