This commit is contained in:
Gilles Soulier
2026-01-05 13:13:08 +01:00
parent 8e14adafc6
commit 1d177e96a6
149 changed files with 29541 additions and 1 deletions

32
infra/.env.example Normal file
View File

@@ -0,0 +1,32 @@
# Created by: Claude
# Date: 2026-01-01
# Purpose: Environment variables template for Mesh infrastructure
# Refs: deployment.md
# Mesh Server
MESH_PUBLIC_URL=http://localhost:8000
MESH_JWT_SECRET=your-secret-key-change-this-in-production-min-32-chars
# Gotify (serveur externe sur le réseau)
# Remplacer par l'URL de votre serveur Gotify
GOTIFY_URL=http://gotify.local:8080
GOTIFY_TOKEN=your-gotify-token-get-from-gotify-ui
# GOTIFY_DEFAULTUSER_NAME=admin # Non utilisé si Gotify externe
# GOTIFY_DEFAULTUSER_PASS=adminadmin # Non utilisé si Gotify externe
# TURN Server
TURN_EXTERNAL_IP=127.0.0.1
TURN_REALM=mesh.local
TURN_HOST=coturn
TURN_PORT=3478
TURN_USER=mesh
TURN_PASS=changeThis123
# STUN
STUN_URL=stun:stun.l.google.com:19302
# Database
DATABASE_URL=sqlite:///./mesh.db
# Logging
LOG_LEVEL=INFO