Codebase list django-environ / c262002
fix README joke2k 5 years ago
1 changed file(s) with 3 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
6868 ---------------
6969 - Fast and easy multi environment for deploy
7070 - Fill ``os.environ`` with .env file variables
71 - Variables casting (see `Supported types`_ below)
71 - Variables casting (see supported_types_ below)
7272 - Url variables exploded to django specific package settings
7373
7474 Django-environ officially supports Django 1.8 ~ 2.0.
103103
104104 Documentation is available at `RTFD <http://django-environ.rtfd.io/>`_.
105105
106 .. _`Supported types`:
106 .. _supported_types:
107107
108108 Supported types
109109 ---------------
245245 It is possible to have multiple env files and select one using environment variables.
246246
247247 .. code-block:: python
248
248249 env = environ.Env()
249250 env.read_env(env.str('ENV_PATH', '.env'))
250251