James
James
Hi Sacha, I use mup as well and connect to DigitalOcean's new MongoDB, I store the cert in the meteor private folder: "private/DO-ca-certificate.crt", and then add to the settings file...
Yeah, so I use this flag on the MONGO_URL: `&tlsAllowInvalidCertificates=true` and it seems to be the only thing that gets it to work. @RobGordon406 I am not sure if that...
It is still working for me.
This is awesome, I use `qualia:prod-shell` and it would be great to just have a `mup shell` command.
That is correct, vueMeteor uses beforeCreate https://github.com/meteor-vue/vue-meteor-tracker/blob/441a6ad2b125862a804e1a7b394a521749a14990/src/index.ts#L204C24-L204C24 I just ran into this problem and in Vue3 beforeCreate is run before the data() / computed() functions which means reactive dependencies are...
To use just add a validate object to the gun option and any or all of the 2 validate functions and return truthy values to allow or falsy to deny....
`peer.wire._socket.remoteAddress` could be used to whitelist messages by IP address, or the raw messages could be check for certain gun paths or public keys to allow or deny.
@amark it was hard to pick the exact spots to add these validation function, I tried to add them at the lowest level possible so messages could be dropped before...
I removed validate.dataIn, since on.in and on.put events work just as well.
Yes, I also open to any method of generating references to dynamic runtime files, my PR works but I don't claim to understand the whole makeInstall function. I am willing...