Skip to content

Commit

Permalink
Merge pull request #85 from publiclab/port-number
Browse files Browse the repository at this point in the history
Switch from port 3000 to port 4000
  • Loading branch information
ryzokuken authored Oct 10, 2017
2 parents 1df2328 + 769c90f commit 29f6198
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/bot.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,6 @@ app.get('/', (req, res) => {
}
});

app.listen(3000, 'localhost', () => {
console.log('Plotsbot is listening on port 3000!');
app.listen(4000, 'localhost', () => {
console.log('Plotsbot is listening on port 4000!');
});

0 comments on commit 29f6198

Please sign in to comment.