doppler-env
The doppler-env package automates the injection of Doppler secrets as environment variables into any Python application and works in the terminal, PyCharm, and Visual Studio Code.
Motivation
The Doppler CLI provides the easiest method of injecting secrets into your application:
doppler run -- python app.py
But when debugging with PyCharm or Visual Studio Code, a vendor-specific Python entry-point is used, preventing the Doppler CLI from acting as the application runner. At Doppler, we go to great lengths to prevent secrets ending up on developer's machines so downloading secrets to a .env file wasn't an option.
Thanks to Python's Site configuration hook via a path configuration file, we can replicate the doppler run
workflow by fetching the secrets via the Doppler CLI (recommended) or API and injecting into your Python application process prior to your code by being executed.
Setup
Ensure you have installed the Doppler CLI locally and have created a Doppler Project. Then authorize the Doppler CLI to retrieve secrets from your workplace by running:
doppler login
Then install doppler-env
in your local development environment or add it to the list of dev specific dependencies:
pip install doppler-env
Configuration
First, define the DOPPLER_ENV
environment variable in your IDE, editor, or terminal to trigger the injection of secrets:
export DOPPLER_ENV=1
You can enable logging for troubleshooting purposes by setting the DOPPLER_ENV_LOGGING
environment variable:
export DOPPLER_ENV_LOGGING=1
Then configure which secrets to fetch for your application by either using the CLI in the root directory of your application:
doppler setup
Or set the DOPPLER_PROJECT
and DOPPLER_CONFIG
environment variables in your debug configuration within PyCharm or Visual Studio Code.
Now whenever the Python interpreter is invoked for your application, secrets will be injected prior to your application being run:
python app.py
In restrictive environments where the use of the Doppler CLI isn't possible, set a DOPPLER_TOKEN
environment variable with a Service Token to fetch secrets directly from the Doppler API:
export DOPPLER_TOKEN='dp.st.dev.xxxxxxx'
python app.py
Acknowledgements
This approach to injecting environment variables was inspired by patch-env.
Issues
For any bug reports, issues, or enhancements, please create a repository issue.
Support
You can get support in the Doppler community forum, find us on Twitter, and for bugs or feature requests, create an issue on the DopplerHQ/python-doppler-env GitHub repository.
If you need help, either use our in-product support or head over to the Doppler Community Forum to get your questions answered by a member of the Doppler support team or