env-automatically

Tool extract environments from settings.py to .env file


License
MIT
Install
pip install env-automatically==0.0.1

Documentation

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.