-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
61 lines (55 loc) · 1.42 KB
/
index.ts
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
import fastify from "fastify";
import * as user from "./modules/user/user.controller";
import { UserObject } from "./modules/user/user.schema";
import fastifySwagger, { FastifyDynamicSwaggerOptions } from "fastify-swagger";
import helmet from "fastify-helmet";
import fastifySensible from "fastify-sensible";
const server = fastify({
logger: true,
});
server.addSchema(UserObject);
export interface FastifyDynamicSwaggerExtendedOptions
extends FastifyDynamicSwaggerOptions {
refResolver?: Object;
}
const fastifySwaggerExtendedOptions: FastifyDynamicSwaggerExtendedOptions = {
routePrefix: "/documentation",
refResolver: {
buildLocalReference(json: any) {
return json.$id;
},
},
openapi: {
info: {
title: "Test swagger",
description: "testing the fastify swagger api",
version: "0.1.0",
},
servers: [
{
url: "http://localhost:8080",
},
],
},
uiConfig: {
docExpansion: "full",
deepLinking: false,
},
staticCSP: true,
exposeRoute: true,
};
server.register(fastifySwagger, fastifySwaggerExtendedOptions);
server.register(helmet);
server.register(fastifySensible);
server.get("/ping", async (request, reply) => {
request.log.info("pong");
return "pong\n";
});
server.register(user.setupRoutes);
server.listen(8080, (err, address) => {
if (err) {
console.error(err);
process.exit(1);
}
console.log(`Server listening at ${address}`);
});