All checks were successful
/ build (map[dockerfile:./services/hasura/Dockerfile name:hasura]) (push) Successful in 47s
/ build (map[dockerfile:./services/web/Dockerfile name:web]) (push) Successful in 1m47s
/ build (map[dockerfile:./services/watchers/Dockerfile name:watchers]) (push) Successful in 2m37s
/ build (map[dockerfile:./services/files/Dockerfile name:files]) (push) Successful in 2m52s
/ build (map[dockerfile:./services/api/Dockerfile name:api]) (push) Successful in 3m2s
/ build (map[dockerfile:./services/app/Dockerfile name:app]) (push) Successful in 31s
/ build (map[dockerfile:./services/tasks/Dockerfile name:tasks]) (push) Successful in 2m44s
/ deploy (push) Successful in 48s
40 lines
746 B
JavaScript
40 lines
746 B
JavaScript
global.modjoSentryConfig = {
|
|
package: require("../package.json"),
|
|
options: {},
|
|
}
|
|
require("common/sentry/instrument")
|
|
|
|
const modjo = require("@modjo/core")
|
|
|
|
const customConfig = require(`~/config`)
|
|
|
|
modjo({
|
|
plugins: {
|
|
// app: "express",
|
|
config: {
|
|
pluginName: "config",
|
|
context: (ctx) => {
|
|
ctx.set("customConfig", customConfig)
|
|
},
|
|
},
|
|
oa: {
|
|
pluginName: "oa",
|
|
dependencies: {
|
|
postgres: {},
|
|
amqp: {},
|
|
minio: {},
|
|
sentry: {},
|
|
},
|
|
buildParams: {
|
|
apiPath: "api",
|
|
sharedApiPath: "../../../libs/common/oapi",
|
|
},
|
|
},
|
|
},
|
|
dependencies: {
|
|
oapi: {
|
|
pluginName: "microservice-oapi",
|
|
dependencies: {},
|
|
},
|
|
},
|
|
})
|