1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-20 05:21:31 +02:00

Allows to specify PORT from env on multiplex plugin

This commit is contained in:
pierreozoux
2015-06-10 18:23:20 +01:00
parent f0cf1f54d0
commit 5dd2dd9f0b

View File

@@ -9,7 +9,7 @@ var staticDir = express.static;
io = io.listen(app);
var opts = {
port: 1948,
port: process.env.PORT || 1948,
baseDir : __dirname + '/../../'
};