Environment Variables in Django
One way of securing your secret keys from external viewers and codebase is to use environment variables.
In Python, you can use the os.getenv('THE_KEY') or os.environ.get('THE_KEY').
For example, when working in Python, you can change tell Django t...
koladev.hashnode.dev1 min read