How to set up environment variables in Django?
Django does not come with built-in support for dot env(.env) files. But we have an amazing Python package for that.
Let’s first install this package in our Django project’s virtual environment.
pip install python-dotenv
The next step is to create...
blog.devjunction.in1 min read