23 lines
642 B
Bash
23 lines
642 B
Bash
# Backend
|
|
GEOINTEL_ENV=development
|
|
GEOINTEL_API_PREFIX=/api/v1
|
|
DATABASE_URL=postgresql+psycopg://geointel:geointel@localhost:5432/geointel?connect_timeout=1
|
|
STORAGE_ROOT=./storage
|
|
MAX_UPLOAD_MB=500
|
|
CORS_ORIGINS=http://localhost:1202,http://127.0.0.1:1202
|
|
YOLO_ENABLED=false
|
|
YOLO_MODEL_PATH=
|
|
YOLO_MODEL_VERSION=
|
|
YOLO_MAX_TILES=100
|
|
ENABLE_GRB_WFS=false
|
|
GRB_WFS_URL=
|
|
OSM_OVERPASS_URL=https://overpass-api.de/api/interpreter
|
|
|
|
# Install backend raster dependencies when needed:
|
|
# python -m pip install rasterio
|
|
|
|
# Frontend
|
|
VITE_API_BASE_URL=
|
|
VITE_API_PROXY_TARGET=http://localhost:8000
|
|
VITE_MAP_STYLE_URL=https://demotiles.maplibre.org/style.json
|