From a3daacc3ef8a5f07cb6780589dad1b7bb7205f9c Mon Sep 17 00:00:00 2001 From: Claude Code Date: Wed, 1 Apr 2026 23:54:14 -0700 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=94=A7=20Update=20.env.e?= =?UTF-8?q?xample=20with=20standardized=20environment=20variable=20names?= =?UTF-8?q?=20and=20descriptions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .env.example | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..2f11300 --- /dev/null +++ b/.env.example @@ -0,0 +1,20 @@ +# companion-api +API_PORT=3850 +NODE_ENV=development + +# PostgreSQL (must match @deployments/docker-compose.yml) +DATABASE_HOST=localhost +DATABASE_PORT=26407 +DATABASE_USER=lilith +DATABASE_PASSWORD=lilith +DATABASE_NAME=companion +DATABASE_SYNCHRONIZE=false + +# Redis +REDIS_HOST=localhost +REDIS_PORT=26406 + +# Upstream services (resolved via @lilith/service-registry in production) +AI_CORE_URL=http://localhost:3790 +MODEL_BOSS_URL=http://localhost:8210 +SPEECH_SYNTHESIS_URL=http://localhost:41222