20 lines
355 B
Markdown
20 lines
355 B
Markdown
|
|
# Deployment
|
||
|
|
|
||
|
|
Hinweise zum Betrieb.
|
||
|
|
|
||
|
|
## Lokale Entwicklung
|
||
|
|
|
||
|
|
```bash
|
||
|
|
python3 web/serve.py
|
||
|
|
```
|
||
|
|
|
||
|
|
## Produktion
|
||
|
|
|
||
|
|
`web/serve.py` ist ein Entwicklungs-Server (synchron, ohne Auth). Für Produktion empfohlen:
|
||
|
|
|
||
|
|
- Reverse-Proxy (nginx / Caddy) vor einem WSGI-Server,
|
||
|
|
- PUT-Endpoint absichern oder deaktivieren,
|
||
|
|
- HTTPS terminieren.
|
||
|
|
|
||
|
|
> Stub — noch auszuarbeiten.
|