diff --git a/server.js b/server.js index f8e3105..aaf597e 100644 --- a/server.js +++ b/server.js @@ -12,8 +12,8 @@ const simpleIcons = require('simple-icons'); const con = require('./constants'); let { port, hostname } = { - port: 3621, - hostname: '67.182.206.28' + port: 3621 + //hostname: '67.182.206.28' }; const app = express(); @@ -103,7 +103,7 @@ module.exports = (client) => { }); }); - app.listen(port, hostname, () => { + app.listen(port /* , hostname */, () => { console.log(`Listening on ${port}`); }); };