Files
planning2ics/webapp/config.json
T
sylvain d4067e9105 Ajout de la webapp Docker (FastAPI + HTML/JS vanilla)
- Backend FastAPI avec auth par cookie (users dans config.json)
- Upload PDF drag & drop, progression en temps réel (SSE)
- Identification des séries via Ollama (config URL dans config.json)
- Téléchargement ICS par série + historique des traitements
- Bouton vider le cache (site web + mapping LLM)
- Docker Swarm ready (docker-compose.yml + Dockerfile)
- Compatible iOS/Android/PC (responsive mobile-first)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-08 13:08:18 +01:00

18 lines
456 B
JSON

{
"ollama": {
"url": "http://192.168.7.119:11434",
"cluster_model": "qwen3.5:cloud",
"local_model": "qwen3:8b"
},
"site": {
"calendar_url": "https://www.opera-orchestre-montpellier.fr/calendrier/?saisons=32669",
"base_url": "https://www.opera-orchestre-montpellier.fr"
},
"auth": {
"session_secret": "changez-cette-cle-secrete-en-production",
"users": [
{"username": "admin", "password": "changeme"}
]
}
}