guidly/.env.example
laruevin 4850fa77ef chore: add header comment to .env.example
Test commit to verify GitLab CI/CD pipeline.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-11 12:08:32 +07:00

29 lines
578 B
Plaintext

# Guidly Environment Configuration
# Copy this file to .env and fill in the values
# PostgreSQL
DB_HOST=localhost
DB_PORT=5432
DB_NAME=guidly
DB_USER=guidly
DB_PASSWORD=
DATABASE_SSL=false
# Telegram Bot
TELEGRAM_BOT_TOKEN=
BOT_WEBHOOK_URL=https://guidly.example.com/api/telegram/webhook
BOT_WEBHOOK_SECRET=
# DeepSeek LLM (OpenAI-compatible API)
LLM_BASE_URL=https://api.deepseek.com
LLM_API_KEY=
LLM_MODEL=deepseek-chat
# Internal API (shared secret between bot and API server)
INTERNAL_API_KEY=
# Application
NODE_ENV=development
PORT=3000
APP_URL=http://localhost:5173