mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 06:34:21 +00:00
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
var argv = require("commander")
|
|
.option("-p, --port <n>", "port to use", parseInt)
|
|
.parse(process.argv);
|
|
|
|
PORT = 80; // Default port.
|
|
if (argv.port) {
|
|
PORT = argv.port;
|
|
}
|
|
|
|
// Run the server.
|
|
(require("./lib/server.js")).listen(PORT);
|