-
Notifications
You must be signed in to change notification settings - Fork 180
/
main.go
143 lines (122 loc) · 5.18 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
package main
import (
"github.com/pydio/cells/v4/common"
// Register minio client for objects storage
_ "github.com/pydio/cells/v4/common/nodes/objects/mc"
// Frontend
_ "github.com/pydio/cells/v4/frontend/front-srv/rest"
_ "github.com/pydio/cells/v4/frontend/front-srv/web"
// Discovery
_ "github.com/pydio/cells/v4/discovery/broker/grpc"
_ "github.com/pydio/cells/v4/discovery/config/grpc"
_ "github.com/pydio/cells/v4/discovery/config/web"
_ "github.com/pydio/cells/v4/discovery/install/rest"
_ "github.com/pydio/cells/v4/discovery/install/web"
_ "github.com/pydio/cells/v4/discovery/registry"
_ "github.com/pydio/cells/v4/discovery/update/grpc"
_ "github.com/pydio/cells/v4/discovery/update/rest"
// Data
_ "github.com/pydio/cells/v4/data/docstore/grpc"
_ "github.com/pydio/cells/v4/data/key/grpc"
_ "github.com/pydio/cells/v4/data/meta/grpc"
_ "github.com/pydio/cells/v4/data/meta/rest"
_ "github.com/pydio/cells/v4/data/search/grpc"
_ "github.com/pydio/cells/v4/data/search/rest"
// _ "github.com/pydio/cells/v4/data/source/index"
_ "github.com/pydio/cells/v4/data/source/index/grpc"
_ "github.com/pydio/cells/v4/data/source/objects"
_ "github.com/pydio/cells/v4/data/source/objects/grpc"
_ "github.com/pydio/cells/v4/data/source/sync"
_ "github.com/pydio/cells/v4/data/source/sync/grpc"
_ "github.com/pydio/cells/v4/data/templates/rest"
_ "github.com/pydio/cells/v4/data/tree/grpc"
_ "github.com/pydio/cells/v4/data/tree/rest"
_ "github.com/pydio/cells/v4/data/versions/grpc"
// ETL Stores
_ "github.com/pydio/cells/v4/common/etl/stores/cells/local"
_ "github.com/pydio/cells/v4/common/etl/stores/pydio8"
// Registry
_ "github.com/pydio/cells/v4/common/registry/config"
_ "github.com/pydio/cells/v4/common/registry/service"
// Broker
_ "github.com/pydio/cells/v4/broker/activity/grpc"
_ "github.com/pydio/cells/v4/broker/activity/rest"
_ "github.com/pydio/cells/v4/broker/chat/grpc"
_ "github.com/pydio/cells/v4/broker/log/grpc"
_ "github.com/pydio/cells/v4/broker/log/rest"
_ "github.com/pydio/cells/v4/broker/mailer/grpc"
_ "github.com/pydio/cells/v4/broker/mailer/rest"
// Cache
_ "github.com/pydio/cells/v4/common/utils/cache/bigcache"
_ "github.com/pydio/cells/v4/common/utils/cache/gocache"
_ "github.com/pydio/cells/v4/common/utils/cache/redis"
_ "github.com/pydio/cells/v4/common/utils/queue/goque"
_ "github.com/pydio/cells/v4/common/utils/queue/jetstream"
_ "github.com/pydio/cells/v4/common/utils/queue/memory"
// Gateways
_ "github.com/pydio/cells/v4/gateway/data"
_ "github.com/pydio/cells/v4/gateway/dav"
_ "github.com/pydio/cells/v4/gateway/grpc"
_ "github.com/pydio/cells/v4/gateway/metrics"
_ "github.com/pydio/cells/v4/gateway/websocket/api"
_ "github.com/pydio/cells/v4/gateway/wopi"
// IDM
_ "github.com/pydio/cells/v4/idm/acl/grpc"
_ "github.com/pydio/cells/v4/idm/acl/rest"
_ "github.com/pydio/cells/v4/idm/graph/rest"
_ "github.com/pydio/cells/v4/idm/key/grpc"
_ "github.com/pydio/cells/v4/idm/meta/grpc"
_ "github.com/pydio/cells/v4/idm/meta/rest"
_ "github.com/pydio/cells/v4/idm/oauth/grpc"
_ "github.com/pydio/cells/v4/idm/oauth/rest"
_ "github.com/pydio/cells/v4/idm/oauth/web"
_ "github.com/pydio/cells/v4/idm/policy/grpc"
_ "github.com/pydio/cells/v4/idm/policy/rest"
_ "github.com/pydio/cells/v4/idm/role/grpc"
_ "github.com/pydio/cells/v4/idm/role/rest"
_ "github.com/pydio/cells/v4/idm/share/rest"
_ "github.com/pydio/cells/v4/idm/user/grpc"
_ "github.com/pydio/cells/v4/idm/user/rest"
_ "github.com/pydio/cells/v4/idm/workspace/grpc"
_ "github.com/pydio/cells/v4/idm/workspace/rest"
// Scheduler
_ "github.com/pydio/cells/v4/scheduler/jobs/grpc"
_ "github.com/pydio/cells/v4/scheduler/jobs/rest"
_ "github.com/pydio/cells/v4/scheduler/tasks/grpc"
_ "github.com/pydio/cells/v4/scheduler/timer/grpc"
// Scheduler Actions
_ "github.com/pydio/cells/v4/broker/activity/actions"
_ "github.com/pydio/cells/v4/common/etl/actions"
_ "github.com/pydio/cells/v4/data/versions"
_ "github.com/pydio/cells/v4/scheduler/actions/archive"
_ "github.com/pydio/cells/v4/scheduler/actions/cmd"
_ "github.com/pydio/cells/v4/scheduler/actions/idm"
_ "github.com/pydio/cells/v4/scheduler/actions/images"
_ "github.com/pydio/cells/v4/scheduler/actions/scheduler"
_ "github.com/pydio/cells/v4/scheduler/actions/tools"
_ "github.com/pydio/cells/v4/scheduler/actions/tree"
// Brokers
_ "github.com/pydio/cells/v4/common/broker/grpcpubsub"
_ "github.com/pydio/cells/v4/common/broker/nats"
_ "gocloud.dev/pubsub/mempubsub"
// _ "gocloud.dev/pubsub/natspubsub"
_ "gocloud.dev/pubsub/rabbitpubsub"
// DAO Drivers
_ "github.com/pydio/cells/v4/common/dao/bleve"
_ "github.com/pydio/cells/v4/common/dao/boltdb"
_ "github.com/pydio/cells/v4/common/dao/mongodb"
_ "github.com/pydio/cells/v4/common/dao/mysql"
// Servers
_ "github.com/pydio/cells/v4/common/server/caddy"
_ "github.com/pydio/cells/v4/common/server/fork"
_ "github.com/pydio/cells/v4/common/server/generic"
_ "github.com/pydio/cells/v4/common/server/grpc"
_ "github.com/pydio/cells/v4/common/server/http"
// Import Command Package after all Mux Registers
"github.com/pydio/cells/v4/cmd"
)
func main() {
common.PackageType = "PydioHome"
common.PackageLabel = "Pydio Cells Home Edition"
cmd.Execute()
}