zodern / meteor-up

Production Quality Meteor Deployment to Anywhere
http://meteor-up.com/
MIT License
1.27k stars 281 forks source link

Troubleshooting Deployments (Short Checklist) #1164

Open SachaG opened 4 years ago

SachaG commented 4 years ago

I wrote a guide about debugging failed deployments. It's not Mup-specific but a lot of it does apply to Mup so I thought I'd share it here:

https://blog.vulcanjs.org/troubleshooting-meteor-deployments-22efe4b25266

zodern commented 4 years ago

Thanks for sharing.

There have been several improvements that might help:

  1. Deployment Timeout. The issue usually is the timeout has to include the time for installing and rebuilding npm dependencies. If you use an image that supports Prepare Bundle, it only has to include the time for starting the app. I'm considering making it required or enabled by default for Mup 2 since it avoids many issues.

  2. You can access the let's encrypt logs with mup proxy logs-le

SachaG commented 4 years ago

Oh that's great, thanks!