guidly/.env.example
laruevin d5ed7fdcf9 Initial commit: Guidly project with CI/CD pipeline
Telegram Bot + Mini App for city walking quests.
- React 19 + TypeScript + Vite 6 frontend
- Express 5 + PostgreSQL backend
- grammY Telegram bot with DeepSeek AI
- GitLab CI/CD: lint, build, deploy to production

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

26 lines
494 B
Plaintext

# 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