40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
# =======================================================
|
|
# Telegram Userbot Credentials (https://my.telegram.org)
|
|
# =======================================================
|
|
API_ID=
|
|
API_HASH=
|
|
PHONE=
|
|
|
|
# =======================================================
|
|
# Telegram Admin Bot Credentials (@BotFather)
|
|
# =======================================================
|
|
BOT_TOKEN=
|
|
ADMIN_USER_IDS=78649634
|
|
REVIEW_CHANNEL_ID=
|
|
|
|
# =======================================================
|
|
# AI Provider (OrcaRouter / OpenAI / Gemini)
|
|
# =======================================================
|
|
AI_PROVIDER=openai
|
|
AI_BASE_URL=https://api.orcarouter.ai/v1
|
|
AI_API_KEY=
|
|
AI_MODEL=google/gemini-3.5-flash
|
|
|
|
# =======================================================
|
|
# PostgreSQL (Configured for Docker Compose)
|
|
# =======================================================
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=copykar
|
|
POSTGRES_HOST=postgres
|
|
POSTGRES_PORT=5432
|
|
DATABASE_URL=postgresql://postgres:postgres@postgres:5432/copykar
|
|
|
|
# =======================================================
|
|
# Storage & Metrics
|
|
# =======================================================
|
|
METRICS_PORT=8000
|
|
MEDIA_DIR=/app/data/media
|
|
GRAFANA_USER=admin
|
|
GRAFANA_PASSWORD=admin
|