Created
July 14, 2020 10:16
-
-
Save velotiotech/64af3251f7be465e2c4191c04a0ea6bd to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { intializeDB } from './db'; | |
intializeDB(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
import app from './Server';
// Start the server
const port = Number(process.env.PORT || 3000);
app.listen(port, () => {
logger.info('Express server started on port: ' + port);
});