mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 22:01:09 +02:00
Add new NestJS-based Telegram bot for project documentation with: - Drizzle ORM for database access - OpenAI integration for AI features - S3 storage support via AWS SDK - Monorepo integration (dev scripts, database setup, MinIO bucket) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
24 lines
564 B
Text
24 lines
564 B
Text
# Server
|
|
PORT=3302
|
|
|
|
# Telegram
|
|
TELEGRAM_BOT_TOKEN=your-bot-token-from-botfather
|
|
TELEGRAM_ALLOWED_USERS= # Optional: comma-separated user IDs
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/projectdoc
|
|
|
|
# Storage (MinIO)
|
|
S3_ENDPOINT=http://localhost:9000
|
|
S3_REGION=us-east-1
|
|
S3_ACCESS_KEY=minioadmin
|
|
S3_SECRET_KEY=minioadmin
|
|
S3_BUCKET=projectdoc-storage
|
|
|
|
# AI - Transcription (OpenAI Whisper)
|
|
OPENAI_API_KEY=sk-your-openai-key
|
|
|
|
# AI - Generation
|
|
LLM_PROVIDER=ollama # ollama | openai
|
|
OLLAMA_URL=http://localhost:11434
|
|
OLLAMA_MODEL=gemma3:4b
|