-
Notifications
You must be signed in to change notification settings - Fork 5
/
main.go
84 lines (65 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package main
import (
"context"
"log/slog"
"os"
"os/signal"
"syscall"
"time"
"github.com/adrianliechti/devkube/app"
"github.com/adrianliechti/devkube/app/build"
"github.com/adrianliechti/devkube/app/connect"
"github.com/adrianliechti/devkube/app/create"
"github.com/adrianliechti/devkube/app/dashboard"
"github.com/adrianliechti/devkube/app/delete"
"github.com/adrianliechti/devkube/app/grafana"
"github.com/adrianliechti/devkube/app/install"
"github.com/adrianliechti/devkube/app/load"
"github.com/adrianliechti/devkube/app/logs"
"github.com/adrianliechti/devkube/app/otel"
"github.com/adrianliechti/devkube/app/setup"
"github.com/adrianliechti/devkube/app/start"
"github.com/adrianliechti/devkube/app/stop"
"github.com/adrianliechti/devkube/pkg/cli"
"github.com/lmittmann/tint"
)
var version string
func main() {
ctx, stop := signal.NotifyContext(context.Background(), os.Interrupt, os.Kill, syscall.SIGTERM)
defer stop()
slog.SetDefault(slog.New(tint.NewHandler(os.Stderr, &tint.Options{
Level: slog.LevelInfo,
TimeFormat: time.Kitchen,
})))
app := initApp()
if err := app.Run(ctx, os.Args); err != nil {
cli.Fatal(err)
}
}
func initApp() cli.Command {
return cli.Command{
Usage: "DevKube",
Suggest: true,
Version: version,
HideHelpCommand: true,
Flags: []cli.Flag{
app.ProviderFlag,
app.ClusterFlag,
},
Commands: []*cli.Command{
create.Command(),
delete.Command(),
start.Command(),
stop.Command(),
setup.Command(),
connect.Command(),
install.Command(),
dashboard.Command(),
grafana.Command(),
otel.Command(),
logs.Command(),
load.Command(),
build.Command(),
},
}
}