You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DjangoBlog/djangoblog/__init__.py

8 lines
517 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# Django应用配置指定模块
# 该模块的主要功能是定义当前Django应用的默认配置类
# 当Django加载应用时会根据此配置类进行应用的初始化设置
# 包括应用名称、信号注册、权限配置等应用级别的配置项
# 指定当前Django应用的默认配置类为'djangoblog.apps.DjangoblogAppConfig'
# Django在启动时会自动加载该配置类执行其中的初始化逻辑如ready()方法)
default_app_config = 'djangoblog.apps.DjangoblogAppConfig'