This commit is contained in:
monty 2019-12-03 10:31:05 +01:00
parent 5a16b78951
commit cb1eb4cc5a
1 changed files with 3 additions and 3 deletions

View File

@ -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}`);
});
};