Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
8 lines
176 B
Python
8 lines
176 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SharedConfig(AppConfig):
|
|
default_auto_field = "django.db.models.UUIDField"
|
|
name = "shared"
|
|
verbose_name = "公共 Schema"
|