Whats save to hardcode in the wrangler.jsonc ?
I have stuff like my secrets store's ID in there.
Is this save to have it in there?
Because I want to share my repository publicly and I have some stuff hardcoded in there.
Of course, secret env variables should not be in there - but in general - what can I display publicly and what not?
4 Replies
Everything in your
wrangler.jsonc should be safe to publish. As you mentioned, secrets should not be placed in wrangler.jsonc.But secret store bindings are fine, ye?
Yes. They are only usable if you are on the same account
Aight, nice. Thank you ^^