19 lines
641 B
Text
19 lines
641 B
Text
|
|
# Configuration Lab pour Veza Chat Server
|
||
|
|
# Copiez ce fichier vers .env.lab
|
||
|
|
|
||
|
|
# Base de données (avec schema chat forcé)
|
||
|
|
# Note: Les scripts lab ajoutent automatiquement options=-c search_path=chat si absent
|
||
|
|
VEZA_LAB_DSN="postgres://veza:veza_password@localhost:5432/veza_lab?sslmode=disable"
|
||
|
|
DATABASE_URL="postgres://veza:veza_password@localhost:5432/veza_lab?sslmode=disable&options=-c%20search_path=chat"
|
||
|
|
|
||
|
|
# Serveur
|
||
|
|
CHAT_SERVER_PORT=8081
|
||
|
|
CHAT_SERVER_HOST=0.0.0.0
|
||
|
|
RUST_LOG=info,chat_server=debug
|
||
|
|
|
||
|
|
# Sécurité (Généré auto par start_lab.sh si absent)
|
||
|
|
# JWT_SECRET=...
|
||
|
|
|
||
|
|
# RabbitMQ (Désactivé par défaut en lab)
|
||
|
|
RABBITMQ_ENABLE=false
|