-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.ts
88 lines (56 loc) · 1.7 KB
/
app.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import "reflect-metadata";
import { Application } from 'express';
import { Server } from 'http';
import { Container } from "typedi";
import { useContainer as ormUseContainer } from "typeorm";
import {
createExpressServer,
useContainer,
} from "routing-controllers";
import {
createConnection,
Connection
} from "typeorm";
import { BdConfig } from "./environment";
import { UserController } from './user'
class App {
public express: Application;
public server: Server;
public port = process.env.PORT || 3000;
public connection: Connection;
constructor() {
this.injection();
this.createConnection();
this.express = createExpressServer({
controllers: this.controllers()
});
this.server = this.express.listen(this.port);
this.swagger()
}
private createConnection() {
createConnection(BdConfig).then(async connection => {
console.log("Connected to DB");
this.connection = connection;
}).catch(error => console.log("TypeORM connection error: ", error));
}
private injection(): void {
useContainer(Container);
ormUseContainer(Container);
}
private swagger(): void {
const swaggerUi = require('swagger-ui-express');
const YAML = require('yamljs');
const swaggerDocument = YAML.load(`${__dirname}/swagger.yaml`);
this.express.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerDocument));
}
private middleware(): Array<Function> {
return [
];
}
private controllers(): Array<Function> {
return [
UserController,
];
}
}
export default new App();