Closed mgwalker closed 8 years ago
The documentation says the PORT environment variable is honored, but it doesn't actually seem to. It looks like a simple typo:
PORT
else if (process.argv.PORT !== undefined) config.port = process.argv.PORT
should maybe be:
else if (process.env.PORT !== undefined) config.port = process.env.PORT
I will open a PR in just a minute!
The documentation says the
PORT
environment variable is honored, but it doesn't actually seem to. It looks like a simple typo:should maybe be:
I will open a PR in just a minute!