Begin Firecracker microVM support

This commit is contained in:
Joakim Hellsén 2026-04-25 06:34:37 +02:00
commit ed8ad1bee9
Signed by: Joakim Hellsén
SSH key fingerprint: SHA256:/9h/CsExpFp+PRhsfA0xznFx2CGfTT5R/kpuFfUgEQk
11 changed files with 290 additions and 7 deletions

14
config/apps.py Normal file
View file

@ -0,0 +1,14 @@
from django.apps import AppConfig
class TussilagoConfig(AppConfig):
"""Application config used to register startup hooks for config package."""
# TODO(TheLovinator): Consider creating an app with a more descriptive name for its purpose, e.g. "core" or "common". # noqa: TD003
name = "config"
verbose_name = "Tussilago Config"
def ready(self) -> None:
"""Register Django system checks after app loading."""
import config.checks # pyright: ignore[reportUnusedImport] # noqa: F401, PLC0415