Begin Firecracker microVM support
This commit is contained in:
parent
fa6af127c1
commit
ed8ad1bee9
11 changed files with 290 additions and 7 deletions
14
config/apps.py
Normal file
14
config/apps.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue