Spaces:
Runtime error
Runtime error
File size: 880 Bytes
c68fdea 8d29bb2 c68fdea 8d29bb2 c68fdea 8d29bb2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Hosted free-web deployment (HF Spaces / Render / …) — env template.
# Copy to deploy/hosted.env (gitignored) or set these as Space secrets/vars.
# For LOCAL Docker, do NOT use this file — docker-compose.yml already configures
# the local mode (Ollama on, server-side geocoding). See DEPLOY.md.
# No local model server on a shared host: hide Ollama, serve BYOK + chatbot.
OLLAMA_ENABLED=false
# Hosted mode. Refuses server-side bulk geocoding (OSM bans bulk use from one
# shared IP) and switches geocoding to the visitor's browser (client-side, from
# their own IP). No geocoder key needed — see DEPLOY.md "How geocoding works".
HOSTED=1
# Per-upload job dirs are deleted after this many hours.
JOB_TTL_HOURS=24
# Note: no ANTHROPIC_API_KEY here — users bring their own key (BYOK) or use the
# free chatbot path. And no NOMINATIM_URL — geocoding is client-side.
|