app.js 244 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 const webServer = require('./server') const schedule = require('./schedule') const config = require('./config/common') const PORT = config.port // schedule.start() webServer.listen(PORT, function() { console.log('server start at', PORT) })