Created
July 28, 2019 12:15
-
-
Save marttp/85006c493391c6da8bf6835edb10accf to your computer and use it in GitHub Desktop.
This file contains hidden or 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
const express = require('express'); | |
const app = express(); | |
const { initFilePathConfig } = require('./utils/file.util.js'); | |
const { PORT } = require('../configs/server.config'); | |
require('./utils/cron.util'); | |
initFilePathConfig(); | |
app.listen(PORT, () => { | |
console.log(`Server start on port: ${PORT}`); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment