I have a django app that uses env variables for things like db passwords, django_secret_key, api keys, etc.
I want to use the env variables in production, but want to keep the values of those values out of git. What is the best way to:
- Store sensitive production environment variables
- Load the variables into the production environment
Thanks in advance.