I am storing my API Tokens in a .env file.
I am using Bun, but I believe this applies to any .env file parser, the '$' is reserved for substitution and this causes issues when using the API Token without escaping every single '$' character.
The use of the '$' character breaks .env file parsing. I have to manually escape all '$' with a '' for the token to be usable.
Bun reference: https://bun.sh/docs/runtime/env