You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
597 B
YAML

services:
app:
build: .
ports:
- "8000:8000"
environment:
GOOGLE_API_KEY: "your-google-api-key"
LLM_MODELS: "gemini/gemini-3-flash-preview,gemini/gemini-flash-latest"
EDIT_MODELS: "gemini/gemini-3-flash-preview,gemini/gemini-flash-latest"
BASE_PATH: "/"
CONVERT_DAILY_LIMIT: "5"
EDIT_DAILY_LIMIT: "10"
PDFLATEX_TIMEOUT_SECONDS: "10"
RELOAD: "0"
volumes:
- ./runs:/app/runs
command: uv run uvicorn main:app --host 0.0.0.0 --port 8000