Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion server/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

// IA645 Docker lab change by Kellen Walburn

const util = require('./util.js');
const express = require('express');
const app = express();
Expand All @@ -13,7 +16,7 @@ const port = process.env.PORT || 5000;
const ID_LEN = 20;

http.listen(port, function() {
console.log('listening on port ' + port);
console.log('Tetris server for IA645 – Kellen Walburn running on port ' + port);
});

// Rooms is a dict of room ids to room objects
Expand Down