# AI Software Factory Environment Variables # Server HOST=0.0.0.0 PORT=8000 LOG_LEVEL=INFO # Ollama OLLAMA_URL=http://localhost:11434 OLLAMA_MODEL=llama3 # Gitea # Configure Gitea API for your organization # GITEA_URL can be left empty to use GITEA_ORGANIZATION instead of GITEA_OWNER GITEA_URL=https://gitea.yourserver.com GITEA_TOKEN=your_gitea_api_token GITEA_OWNER=your_organization_name GITEA_REPO= (optional - leave empty for any repo, or specify a default) # n8n # n8n webhook for Telegram integration N8N_WEBHOOK_URL=http://n8n.yourserver.com/webhook/telegram # n8n API for automatic webhook configuration N8N_API_URL=http://n8n.yourserver.com N8N_USER=n8n_admin N8N_PASSWORD=your_secure_password # Telegram TELEGRAM_BOT_TOKEN=your_telegram_bot_token TELEGRAM_CHAT_ID=your_chat_id # PostgreSQL POSTGRES_HOST=postgres POSTGRES_PORT=5432 POSTGRES_USER=ai_test POSTGRES_PASSWORD=your_secure_password POSTGRES_DB=ai_test # Database Connection Pool Settings DB_POOL_SIZE=10 DB_MAX_OVERFLOW=20 DB_POOL_RECYCLE=3600 DB_POOL_TIMEOUT=30