Hacker News new | ask | show | jobs
by 411111111111111 2232 days ago
You might want to just switch to a dotenv library. Quick Google for Django yielded https://github.com/jpadilla/django-dotenv
1 comments

Dotenv libraries are just for dev and other similar environments. In production you should still use normal environment variables (or whatever system you use to load your configuration), as dotenv files stay on the filesystem and sometimes even committed to your SCM.