-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.ts
42 lines (34 loc) · 955 Bytes
/
app.ts
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
// eslint-disable-next-line @typescript-eslint/no-var-requires
require('dotenv').config()
console.log("=========== service env is =====> ",process.env, )
export default class AppBootHook {
constructor(app) {
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
this.app = app
}
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.
}
async serverDidReady() {
// Server is listening.
}
async beforeClose() {
// Do some thing before app close.
}
}