Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/api/webhooks-cache/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import bodyParser from "body-parser";
import express, { type NextFunction, type Request, type Response } from "express";
import helmet from "helmet";
import httpStatus from "http-status";
import logger from "../src/config/logger";

Expand Down Expand Up @@ -32,6 +33,7 @@ class EventStore {
}

const app = express();
app.use(helmet());
const PORT = process.env.PORT || 3000;
const PASSWORD = process.env.PASSWORD || "bananas";
const MAX_EVENTS = 1000;
Expand Down
Loading