Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
7 lines
126 B
Python
7 lines
126 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class TenantConfig(AppConfig):
|
|
name = "apps.tenant"
|
|
verbose_name = "租户管理"
|