Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 617 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 617 Bytes

Extract Env

This project was created to solve the recurring problem of adding an environment variable to the settings.py with python-decouple while not adding the same variable to the .env file. It reads the settings.py file and then creates the .env file with all environment variables already set.

How to install

pip install env-automatically

How to use

1 - Go to the Django project folder where settings.py is.

2 - Run command:

env-automatically .

3 - The file .env will be created in the same folder of settings.py.