initial commit

This commit is contained in:
zyachel 2022-04-17 17:54:23 +05:30
commit bf4ee2c3cf
54 changed files with 7101 additions and 0 deletions

30
server.js Normal file
View 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'
)
);