-
Notifications
You must be signed in to change notification settings - Fork 3
/
main.go
53 lines (37 loc) · 1.07 KB
/
main.go
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
53
package main
import (
"ikit-api/internal/routes"
"ikit-api/internal/util/app"
"log"
"os"
"strings"
"github.com/pocketbase/pocketbase/core"
"github.com/pocketbase/pocketbase/plugins/migratecmd"
_ "ikit-api/migrations"
_ "github.com/pocketbase/pocketbase/migrations"
)
func main() {
app := app.Get()
isGoRun := strings.HasPrefix(os.Args[0], os.TempDir())
migratecmd.MustRegister(app, app.RootCmd, migratecmd.Config{
// enable auto creation of migration files when making collection changes in the Admin UI
// (the isGoRun check is to enable it only during development)
Automigrate: isGoRun,
})
app.OnRecordAfterCreateRequest("essay").Add(func(e *core.RecordCreateEvent) error {
return routes.OnessayCreate(e)
})
app.OnRecordAfterUpdateRequest("essay").Add(func(e *core.RecordUpdateEvent) error {
return routes.OnessayUpdate(e)
})
app.OnBeforeServe().Add(func(e *core.ServeEvent) error {
routes.Route(e.Router)
if err := routes.Register(); err != nil {
return err
}
return nil
})
if err := app.Start(); err != nil {
log.Fatal(err)
}
}