1

Allow custom port

This commit is contained in:
Alex Yatskov 2015-03-17 18:46:13 +09:00
parent ad6d5dfcf3
commit 850274efdf

View File

@ -74,5 +74,5 @@ function main(staticFiles, port) {
}
if (require.main === module) {
main('client', 3000);
main('client', process.env.PORT || 3000);
}