-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
35 lines (29 loc) · 879 Bytes
/
server.js
File metadata and controls
35 lines (29 loc) · 879 Bytes
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
require('dotenv').config();
const app = require('./app');
const mongoose = require('mongoose');
// const dotenv = require('dotenv');
// process.on('uncaughtException', (err) => {
// console.log('UNCAUGHT EXCEPTION! 💥 Shutting down...');
// console.log(err.name, err.message);
// process.exit(1);
// });
// Config
// dotenv.config({ path: '.en' });
const DB = process.env.DATABASE.replace(
'<password>',
process.env.DATABASE_PASSWORD
);
mongoose.connect(DB).then((data) => {
console.log(`DB Connection Successful!`);
});
const port = process.env.PORT || 5000;
app.listen(port, () => {
console.log(`Server is running on PORT ${port}`);
});
// process.on('unhandledRejection', (err) => {
// console.log('UNHANDLED REJECTION! 💥 Shutting down...');
// console.log(err.name, err.message);
// server.close(() => {
// process.exit(1);
// });
// });