We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$PORT is a really common environment variable for specifying the port to use for web servers.
$PORT
We may want to consider defaulting to the value of process.env.PORT || 1234
process.env.PORT || 1234
parcel/src/cli.js
Line 182 in fc041d0
The text was updated successfully, but these errors were encountered:
Hi @jamiebuilds I am getting this error when i try to deploy on heroku:
Error R10 (Boot timeout) -> Web process failed to bind to $PORT within 60 seconds of launch.
Is it related with that issue? I couldn't fix it.
Sorry, something went wrong.
Could I take this issue?
Yes, it infact is - and you get very confused why parcel keeps trying to steal the $PORT you set for your application server 🙈
No branches or pull requests
$PORT
is a really common environment variable for specifying the port to use for web servers.We may want to consider defaulting to the value of
process.env.PORT || 1234
parcel/src/cli.js
Line 182 in fc041d0
The text was updated successfully, but these errors were encountered: