-
Notifications
You must be signed in to change notification settings - Fork 103
/
Copy pathindex.ts
37 lines (30 loc) · 1.04 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
import * as Server from "./server";
import * as Database from "./database";
import * as Configs from "./configurations";
console.log(`Running environment ${process.env.NODE_ENV || "dev"}`);
// Catch unhandling unexpected exceptions
process.on("uncaughtException", (error: Error) => {
console.error(`uncaughtException ${error.message}`);
});
// Catch unhandling rejected promises
process.on("unhandledRejection", (reason: any) => {
console.error(`unhandledRejection ${reason}`);
});
// Define async start function
const start = async ({ config, db }) => {
try {
const server = await Server.init(config, db);
await server.start();
console.log("Server running at:", server.info.uri);
} catch (err) {
console.error("Error starting server: ", err.message);
throw err;
}
};
// Init Database
const dbConfigs = Configs.getDatabaseConfig();
const database = Database.init(dbConfigs);
// Starting Application Server
const serverConfigs = Configs.getServerConfigs();
// Start the server
start({ config: serverConfigs, db: database });