mirror of
https://github.com/nocobase/nocobase
synced 2024-11-16 01:36:27 +00:00
21 lines
316 B
Markdown
21 lines
316 B
Markdown
---
|
|
order: 3
|
|
---
|
|
|
|
# Installation and Startup Process
|
|
|
|
## app.init
|
|
|
|
- app.load()
|
|
- db.sync()
|
|
- db.emitAsync('init')
|
|
|
|
## app.start
|
|
|
|
- app.load()
|
|
- db.emitAsync('start')
|
|
- Load the collections configuration in the database
|
|
- Load the pm configuration in the database
|
|
- Start the activated plugin
|
|
- app.listen()
|