bdd181425b
Docker Compose project with automated Playwright benchmarks comparing django-liveview 2.2.0 against Phoenix LiveView 1.0 across 6 scenarios.
10 lines
235 B
Python
10 lines
235 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class AppConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "app"
|
|
|
|
def ready(self):
|
|
import app.handlers # noqa: F401 - register all liveview handlers
|