Clifton Cunningham
Clifton Cunningham
Interestingly, now that bosco always serves assets from disk, you could probably just use `bosco cdn` all the time and never have bosco run the watch command, and then run...
Already can: ```bosco run -d cdn```
@geophree this would be a good one to explore re. if we can re-think the bundling to operate in a way that is: a) backward compatible with existing bosco-service.json b)...
What's the example? The run wrappers are all about starting / stopping long running processes - in this instance node via pm2 - not executing arbitrary commands like exec does,...
Ok - I like the 'be prepared' theme, but not sure even if we did solve the parsing that PM2 would know what to do with the above - it's...
Agreed, this has annoyed me too - I'll see if I can get to it this week.
You can configure cluster to start 1 worker locally and retry once.
The default cluster retry policy at TES is 10: https://github.com/tes/module-tsl-cluster/blob/master/index.js#L37 You can over-ride it on a per service level. Given that this is our module, I'm tempted to have it...
Agreed - but I think we should just make it use .nvmrc and remove the nodeVersion from `bosco-service.json`. Makes it consistent and less of a special case. I assume the...
I think this change is really small: https://github.com/tes/bosco/blob/0497fddc6e84c97078807e3d59de7d859b40f817/src/RunWrappers/Node.js#L47 At the moment we get the node version (can be semver) from service.nodeVersion. We just need to read it from `.nvmrc` as...