mirror of
https://github.com/zyachel/quetre.git
synced 2025-04-04 13:37:39 +03:00
initial commit
This commit is contained in:
commit
bf4ee2c3cf
54 changed files with 7101 additions and 0 deletions
30
server.js
Normal file
30
server.js
Normal file
|
@ -0,0 +1,30 @@
|
|||
////////////////////////////////////////////////////////
|
||||
// IMPORTS
|
||||
////////////////////////////////////////////////////////
|
||||
import dotenv from 'dotenv/config'; // importing .env vars
|
||||
import app from './app.js';
|
||||
import log from './utils/log.js';
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// HANDLING NODEJS ERRORS
|
||||
////////////////////////////////////////////////////////
|
||||
process.on('uncaughtException', err => {
|
||||
log(err, 'error');
|
||||
process.exit(1);
|
||||
});
|
||||
|
||||
process.on('unhandledRejection', err => {
|
||||
log(err, 'error');
|
||||
server.close(() => process.exit(1));
|
||||
});
|
||||
|
||||
////////////////////////////////////////////////////////
|
||||
// STARTING SERVER
|
||||
////////////////////////////////////////////////////////
|
||||
const port = 3000 || process.env.PORT;
|
||||
const server = app.listen(port, () =>
|
||||
log(
|
||||
`server running in ${process.env.NODE_ENV} mode at port ${port}`,
|
||||
'success'
|
||||
)
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue