- Native <dialog> modal infra (CSS + ~30 LOC JS, no framework) used for create forms and delete confirmations. - Index pages become listing-only: + Create button opens a modal; the broken blueprint Actions column and inline overlay edit cells are gone. - Server detail gains a blueprint reassignment form; existing Delete button now opens a confirmation modal before tearing down the runtime. - Blueprint detail gains a Delete button + confirmation modal (was unreachable from the UI before). - New overlay detail page at /overlays/<id> with edit form, "Used by" blueprints list, and delete (admin only). - Server create: port field is now optional; backend auto-assigns the next free port from LEFT4ME_PORT_RANGE_START/_END (default 27015-27115). 409 on range exhaustion. - New routes: POST /blueprints/<id>/delete (form sentinel matching overlays pattern), POST /servers/<id> (form-friendly blueprint reassign), GET /overlays/<id>. - Server delete operation now redirects to /servers; overlay update redirects to /overlays/<id>. Server rename remains unsupported pending an id-vs-name design pass for l4d2host (the runtime directory is name-keyed; renaming would orphan files). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
1.3 KiB
Python
34 lines
1.3 KiB
Python
import os
|
|
|
|
|
|
DEFAULT_CONFIG: dict[str, object] = {
|
|
"SECRET_KEY": None,
|
|
"DATABASE_URL": "sqlite:///l4d2web.db",
|
|
"STATUS_REFRESH_SECONDS": 8,
|
|
"JOB_WORKER_THREADS": 4,
|
|
"JOB_WORKER_ENABLED": True,
|
|
"JOB_WORKER_POLL_SECONDS": 1,
|
|
"JOB_LOG_REPLAY_LIMIT": 2000,
|
|
"JOB_LOG_LINE_MAX_CHARS": 4096,
|
|
"PORT_RANGE_START": 27015,
|
|
"PORT_RANGE_END": 27115,
|
|
}
|
|
|
|
|
|
def _bool_from_env(raw: str) -> bool:
|
|
return raw.lower() not in {"0", "false", "no"}
|
|
|
|
|
|
def load_config() -> dict[str, object]:
|
|
return {
|
|
"SECRET_KEY": os.getenv("SECRET_KEY"),
|
|
"DATABASE_URL": os.getenv("DATABASE_URL", "sqlite:///l4d2web.db"),
|
|
"STATUS_REFRESH_SECONDS": int(os.getenv("STATUS_REFRESH_SECONDS", "8")),
|
|
"JOB_WORKER_THREADS": int(os.getenv("JOB_WORKER_THREADS", "4")),
|
|
"JOB_WORKER_ENABLED": _bool_from_env(os.getenv("JOB_WORKER_ENABLED", "true")),
|
|
"JOB_WORKER_POLL_SECONDS": float(os.getenv("JOB_WORKER_POLL_SECONDS", "1")),
|
|
"JOB_LOG_REPLAY_LIMIT": int(os.getenv("JOB_LOG_REPLAY_LIMIT", "2000")),
|
|
"JOB_LOG_LINE_MAX_CHARS": int(os.getenv("JOB_LOG_LINE_MAX_CHARS", "4096")),
|
|
"PORT_RANGE_START": int(os.getenv("LEFT4ME_PORT_RANGE_START", "27015")),
|
|
"PORT_RANGE_END": int(os.getenv("LEFT4ME_PORT_RANGE_END", "27115")),
|
|
}
|