- 全新安装时,超级管理员初始密码为随机生成,并只能在首次启动的后台日志中查看(使用初始密码登录成功后可在设定中修改)。
- 用户密码修改需要同时包含大小写和数字。
- 修复了第三个插件依赖库无法自动安装的问题。
This commit is contained in:
jxxghp
2024-01-19 11:20:30 +08:00
parent 1f56ceaea9
commit 639abf67c2
4 changed files with 6 additions and 6 deletions

View File

@ -182,6 +182,8 @@ def start_module():
"""
启动模块
"""
# 初始化超级管理员
init_super_user()
# 虚拟显示
DisplayHelper()
# 站点管理
@ -202,8 +204,6 @@ def start_module():
start_frontend()
# 检查认证状态
check_auth()
# 初始化超级管理员
init_super_user()
if __name__ == '__main__':