25 lines
783 B
Bash
25 lines
783 B
Bash
# === Omnex — déploiement local (docker compose) ===
|
|
# Secrets générés pour le dev local. Ne jamais versionner .env.
|
|
|
|
# --- Secrets obligatoires ---
|
|
OMNEX_JWT_SECRET=0879032aa29538641920360c1990e39f7e86123b1fa869e9e3e60d44ceca0a34
|
|
OMNEX_SEED_PASSWORD=62dc702dfe26d117216d2994
|
|
|
|
# --- Postgres ---
|
|
POSTGRES_USER=omnex
|
|
POSTGRES_PASSWORD=770f17edeb9d1f38ad13e53f55e29963
|
|
POSTGRES_DB=omnex
|
|
|
|
# --- Redis (sessions) ---
|
|
REDIS_PASSWORD=630fa654c76f1256fea3ba3c51a718a4
|
|
|
|
# --- API ---
|
|
OMNEX_ENV=dev
|
|
OMNEX_SEED_USERNAME=admin
|
|
OMNEX_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:5173
|
|
OMNEX_DEMO_DOMAIN=192.168.1.31.nip.io
|
|
OMNEX_DEMO_HTTPS_PORT=31908
|
|
KUBECONFIG=/home/xor_fakers/.kube/config
|
|
FRONTEND_IMAGE_APP=xor1234/frontend-mln:helm
|
|
BACKEND_IMAGE_APP=xor1234/backend-mln:helm
|