#environment-variables

[ follow ]
Node JS
fromDEV Community
2 days ago

I Scanned 10 Popular GitHub Actions Workflows for Undocumented Environment Variables. Here's What I Found.

Many popular JavaScript projects have undocumented environment variables in their GitHub Actions workflows, leading to potential issues for developers forking these projects.
Node JS
fromDEV Community
3 days ago

I Scanned 6 Popular Node.js Repos for Undocumented Environment Variables. Here's What I Found.

Many popular Node.js projects lack comprehensive documentation for process.env variables, leading to potential configuration issues.
Information security
fromMedium
4 days ago

Your AWS Credentials Are Still on GitHub Even After You Delete Them

Prevent credential exposure through .gitignore, environment variables, git-secrets pre-commit hooks, and AWS IAM roles instead of hardcoding credentials in code.
Python
fromRealpython
2 months ago

How to Integrate ChatGPT's API With Python Projects - Real Python

Obtain an OpenAI API key, store it securely using environment variables or key management, and install the OpenAI Python library before making ChatGPT API calls.
fromdaniel.feldroy.com
6 months ago

TIL: Setting environment variables for pytest

When writing tests in pytest, often there's a need to set environment variables for your tests. Instead of modifying `os.environ` directly, which can lead to side effects and make tests harder to manage, here's how to do it with the [pytest-env](https://pypi.org/project/pytest-env/) package. First, install the package. ```sh pip install pytest-env # classic but works great uv add pytest-env # if you're one of us cool kids using uv uv add pytest-env --group test # if you use a specific test group of dependencies ```
Python
Node JS
fromLogRocket Blog
10 months ago

How to configure Next.js environmental variables - LogRocket Blog

Environment variables in Next.js help separate code from configuration for secure and flexible application management.
[ Load more ]