how to define the existance of secrets in wrangler.jsonc?
i have been wondering how to use worker secrets for over a week now and i thougt i made it work but turns out it was just a fluke
can someone please tell me how can i define worker secrets in wrangler.jsonc so that typescript doesn't scream at me and also they actually work?
8 Replies
DNS over Discord: WHOIS
oh and calling them by using
env.SECRET_NAME
didn't work for me
i am using ts
i did try to manually type them in worker-configuration.d.ts
, stopped ts from screaming @ me but they don't workyou don't define secrets in wrangler.json
you will want to
npx wrangler secret put
and yeah, for typescript you'll just want to deifne them in the env typewell then I'm doing it correctly and yet the secrets turn up empty when i try to use them or log them to check if they work
worker-configuration.d.ts
:
somewhere in the code:
console.log(env.DISCORD_APP_ID);
(log)

it seems like you aren't setting the secret correctly then
should be
npx wrangler secret put DISCORD_APP_ID
then you paste it in when it asksi've set it in the dash

i have no idea what I'm doing wrong
