You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
640 B
23 lines
640 B
# Django Production Settings
|
|
DJANGO_SECRET_KEY=generate-a-strong-random-secret-key-here
|
|
DJANGO_DEBUG=False
|
|
ALLOWED_HOSTS=*
|
|
CORS_ALLOW_ALL_ORIGINS=True
|
|
CSRF_TRUSTED_ORIGINS=http://localhost,http://127.0.0.1,http://YOUR_SERVER_IP
|
|
|
|
# Database Configuration (PostgreSQL)
|
|
POSTGRES_DB=divar_crawler
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=your_secure_postgres_password
|
|
POSTGRES_HOST=db
|
|
POSTGRES_PORT=5432
|
|
|
|
# Redis & Celery
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# LLM Config (OpenAI / OpenRouter)
|
|
OPENAI_API_KEY=sk-or-v1-your-openrouter-key
|
|
OPENAI_MODEL=google/gemma-4-26b-a4b-it:free
|
|
|
|
# Telegram Config
|
|
TELEGRAM_BOT_TOKEN=your-telegram-bot-token-here
|