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
609 B

# Django Settings
DJANGO_SECRET_KEY=django-insecure-your-secret-key-here
DJANGO_DEBUG=True
ALLOWED_HOSTS=localhost,127.0.0.1,*
CORS_ALLOW_ALL_ORIGINS=True
CORS_ALLOWED_ORIGINS=http://localhost:3000,http://localhost:5173
# Database Configuration (PostgreSQL)
POSTGRES_DB=divar_crawler
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
# Redis & Celery
REDIS_URL=redis://localhost:6379/0
# LLM Config (OpenAI / Gemini)
OPENAI_API_KEY=your-openai-api-key-here
# Optional: LLM_MODEL_NAME=gpt-4o-mini
# Telegram Config
TELEGRAM_BOT_TOKEN=your-telegram-bot-token-here