app.infrastructure.apps
1from django.apps import AppConfig 2 3 4class InfrastructureConfig(AppConfig): 5 """ 6 Django AppConfig for the infrastructure app. 7 8 - default_auto_field: Specifies the type of auto-created primary key field. 9 - name: The full Python path to the application. 10 """ 11 default_auto_field = 'django.db.models.BigAutoField' 12 name = 'app.infrastructure'
class
InfrastructureConfig(django.apps.config.AppConfig):
5class InfrastructureConfig(AppConfig): 6 """ 7 Django AppConfig for the infrastructure app. 8 9 - default_auto_field: Specifies the type of auto-created primary key field. 10 - name: The full Python path to the application. 11 """ 12 default_auto_field = 'django.db.models.BigAutoField' 13 name = 'app.infrastructure'
Django AppConfig for the infrastructure app.
- default_auto_field: Specifies the type of auto-created primary key field.
- name: The full Python path to the application.
name =
'app.infrastructure'