33 lines
816 B
Plaintext
33 lines
816 B
Plaintext
# 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
|