nocobase/docs/guide/kernel-principle/installation-startup.zh-CN.md

22 lines
287 B
Markdown
Raw Normal View History

---
order: 3
---
# 项目安装和启动流程
2021-11-28 13:01:08 +00:00
## app.init
2021-11-28 13:01:08 +00:00
- app.load()
- db.sync()
- db.emitAsync('init')
2021-11-28 13:01:08 +00:00
## app.start
2021-11-28 13:01:08 +00:00
- app.load()
- db.emitAsync('start')
- 加载数据库里的 collections 配置
- 加载数据库里的 pm 配置
- 启动激活的插件
- app.listen()