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 ClientConfig(AppConfig):
|
|
name = "apps.client"
|
|
verbose_name = "客源管理"
|