# ────────────────────────────────────────────── # English Style Converter — Docker Configuration # ────────────────────────────────────────────── # # Copy this file to .env and uncomment the profile you want. # Or just set the three OPENAI_* vars for any provider. # ── Option A: Ollama (local, free) ──────────── # Run: docker compose --profile ollama up # OPENAI_BASE_URL=http://ollama:11434/v1 # OPENAI_API_KEY=ollama # OLLAMA_MODEL=llama3 # OPENAI_MODEL=${OLLAMA_MODEL} # ── Option B: OpenRouter (cloud, free tier) ─── OPENAI_BASE_URL=https://openrouter.ai/api/v1 OPENAI_API_KEY=sk-or-v1-YOUR_KEY_HERE OPENAI_MODEL=openrouter/free # ── Port mapping ────────────────────────────── APP_PORT=5656