-
Notifications
You must be signed in to change notification settings - Fork 11
/
app.js
63 lines (52 loc) · 1.7 KB
/
app.js
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
require("dotenv").config();
const createError = require('http-errors');
const express = require("express");
const logger = require("morgan");
const helmet = require("helmet");
const cors = require("cors");
const Sentry = require("@sentry/node");
const admin = require("firebase-admin");
const utils = require("./utils/utils");
const allRouters = require("./routes/all_routes");
// Importing @sentry/tracing patches the global hub for tracing to work.
const Tracing = require("@sentry/tracing");
const app = express();
app.use(cors());
app.use(logger("dev"));
app.use(express.json());
app.use(helmet());
app.use(express.urlencoded({ extended: false }));
Sentry.init({
dsn: process.env.SENTRY_API_KEY,
environment: process.env.NODE_ENV,
integrations: [
// enable HTTP calls tracing
new Sentry.Integrations.Http({ tracing: true }),
// enable Express.js middleware tracing
new Tracing.Integrations.Express({ app }),
],
// Set tracesSampleRate to 1.0 to capture 100%
// of transactions for performance monitoring.
// We recommend adjusting this value in production
tracesSampleRate: 1.0,
});
app.use(Sentry.Handlers.requestHandler());
app.use(Sentry.Handlers.errorHandler());
utils
.generateTempFile("service.json", process.env.GOOGLE_SERVICE_KEY)
.then((serviceAccount) => {
return admin.initializeApp({
credential: admin.credential.cert(serviceAccount),
});
});
app.use("/api/v1", allRouters);
// error handler
app.use(function (err, req, res, next) {
// set locals, only providing error in development
res.locals.message = err.message;
res.locals.error = err;
// render the error page
res.status(err.status || 500);
res.end(res.sentry + "\n");
});
module.exports = app;