Valentin Marchaud
Valentin Marchaud
There are work going on in NodeJS for V8 to support source map out of the box: https://github.com/nodejs/node/pull/28960
Could you use this snippet (from the [docs](http://pm2.keymetrics.io/docs/usage/signals-clean-restart/)) : ```javascript var http = require("http"), app = require("express")(); app.use("/", function (req, res) { return res.send(404); }); var server = http.createServer(app); server.listen(4000,...
Nope, this module rely on the [PM2 API ](https://github.com/pm2-hive/pm2-auto-pull/blob/master/app.js#L24) which itself rely on [vizion](https://github.com/Unitech/pm2/blob/master/lib/API/Version.js#L36) which itself rely on spawning a child process executing git ([here](https://github.com/keymetrics/vizion/blob/master/lib/git.js#L207) and finally [here](https://github.com/keymetrics/vizion/blob/master/lib/git.js#L183)). You must...
@wizardpisces You can just use `pm2 restart pm2-logrotate` and it should works
+1 Not working with Sails.JS
+1: Need to keep trace history across restart
``` service: api: type: NodePort ui: type: NodePort annotations: "beta.cloud.google.com/backend-config": '{"default": "komiser-default-config"}' ingress: api: host: ${local.statusbay_api_endpoint} annotations: "external-dns.alpha.kubernetes.io/hostname": "${local.statusbay_api_endpoint}." "cert-manager.io/cluster-issuer": "ssl-cert-issuer" tls: - hosts: - ${local.statusbay_api_endpoint} secretName: statusbay-api-tls ui: host:...
If i'm not mistaken there is no way of using the official grpc client in the browser ? There are alternatives (https://github.com/improbable-eng/grpc-web or https://github.com/grpc/grpc-web) but this would requires making new...