When using prisma token CLI command (using secret ...
# orm-help
r
When using prisma token CLI command (using secret in prisma.yml), how can i refresh the token from my application code? Not the user JWT but the service JWT!
n
You can generate a JWT using the actual secret that you enter in
prisma.yml
. Typically you'd use an env var for this. You can check how
prisma-binding
does it 🙂
r
Thanks @nilan