-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.js
53 lines (42 loc) · 1.12 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* 全局定义
* @param app
*/
class AppBootHook {
constructor(app) {
this.app = app;
app.root_path = __dirname;
}
configWillLoad() {
// Ready to call configDidLoad,
// Config, plugin files are referred,
// this is the last chance to modify the config.
}
configDidLoad() {
// Config, plugin files have been loaded.
}
async didLoad() {
// All files have loaded, start plugin here.
}
async willReady() {
// All plugins have started, can do some thing before app ready
}
async didReady() {
// Worker is ready, can do some things
// don't need to block the app boot.
console.log('========Init Data=========')
const ctx = await this.app.createAnonymousContext();
await ctx.model.User.remove();
await ctx.service.user.create({
mobile: '13716389811',
password: '111111',
name: '老王',
})
}
async serverDidReady() {
}
async beforeClose() {
// Do some thing before app close.
}
}
module.exports = AppBootHook;