1
0
Fork 0
mirror of synced 2024-06-27 18:40:42 +12:00
budibase/packages/server/src/app.ts

97 lines
2.2 KiB
TypeScript
Raw Normal View History

// need to load environment first
import { ExtendableContext } from "koa"
const env = require("./environment")
2021-04-16 03:57:01 +12:00
const CouchDB = require("./db")
require("@budibase/backend-core").init(CouchDB)
const Koa = require("koa")
const destroyable = require("server-destroy")
const koaBody = require("koa-body")
2021-05-28 21:09:32 +12:00
const pino = require("koa-pino-logger")
2020-05-15 02:12:30 +12:00
const http = require("http")
const api = require("./api")
2020-06-01 04:12:52 +12:00
const eventEmitter = require("./events")
const automations = require("./automations/index")
2020-07-15 03:00:58 +12:00
const Sentry = require("@sentry/node")
const fileSystem = require("./utilities/fileSystem")
const bullboard = require("./automations/bullboard")
2021-05-13 04:37:09 +12:00
const redis = require("./utilities/redis")
2020-05-08 01:04:32 +12:00
const app = new Koa()
2019-06-14 21:05:46 +12:00
2020-05-08 01:04:32 +12:00
// set up top level koa middleware
2021-02-10 07:49:12 +13:00
app.use(
koaBody({
multipart: true,
formLimit: "10mb",
jsonLimit: "10mb",
textLimit: "10mb",
enableTypes: ["json", "form", "text"],
parsedMethods: ["POST", "PUT", "PATCH", "DELETE"],
2021-02-10 07:49:12 +13:00
})
)
2020-05-15 02:12:30 +12:00
2021-06-02 07:17:06 +12:00
app.use(
pino({
prettyPrint: {
levelFirst: true,
},
level: env.LOG_LEVEL || "error",
})
)
2020-05-05 04:13:57 +12:00
if (!env.isTest()) {
const plugin = bullboard.init()
app.use(plugin)
}
2020-06-01 04:12:52 +12:00
app.context.eventEmitter = eventEmitter
app.context.auth = {}
2020-05-25 09:54:08 +12:00
2020-05-08 01:04:32 +12:00
// api routes
app.use(api.routes())
2020-05-05 04:13:57 +12:00
if (env.isProd()) {
env._set("NODE_ENV", "production")
2020-07-15 03:00:58 +12:00
Sentry.init()
app.on("error", (err: any, ctx: ExtendableContext) => {
Sentry.withScope(function (scope: any) {
scope.addEventProcessor(function (event: any) {
2020-07-15 03:00:58 +12:00
return Sentry.Handlers.parseRequest(event, ctx.request)
})
Sentry.captureException(err)
})
})
}
2020-07-17 01:27:27 +12:00
const server = http.createServer(app.callback())
destroyable(server)
2020-07-17 01:27:27 +12:00
server.on("close", async () => {
if (env.NODE_ENV !== "jest") {
console.log("Server Closed")
}
await redis.shutdown()
})
module.exports = server.listen(env.PORT || 0, async () => {
2020-07-17 01:27:27 +12:00
console.log(`Budibase running on ${JSON.stringify(server.address())}`)
env._set("PORT", server.address().port)
eventEmitter.emitPort(env.PORT)
fileSystem.init()
2021-05-13 04:37:09 +12:00
await redis.init()
await automations.init()
2020-07-17 02:19:46 +12:00
})
2021-05-04 22:32:22 +12:00
process.on("uncaughtException", err => {
console.error(err)
server.close()
server.destroy()
})
process.on("SIGTERM", () => {
server.close()
server.destroy()
})