django-environ icon indicating copy to clipboard operation
django-environ copied to clipboard

Django-environ allows you to utilize 12factor inspired environment variables to configure your Django application.

Results 96 django-environ issues
Sort by recently updated
recently updated
newest added

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4.0.0 to 4.2.0. Release notes Sourced from actions/setup-python's releases. Add check-latest input and bug fixes In scope of this release we add the check-latest input. If check-latest ...

github_actions
dependencies

With dict we can set defaults ``` MYVAR = env.dict( "MYVAR", { 'value': bool, 'cast': { 'ACTIVE': bool, 'URL': str, } }, default={ 'ACTIVE': False, 'URL': "http://example.com", }) ``` now,...

`env.cache()` yields results with `django_redis.cache.RedisCache`, on Django 4.0, whereas it should be returning `django.core.cache.backends.redis.RedisCache`. I see this was fixed in develop via https://github.com/joke2k/django-environ/pull/397, but that was merged AFTER 0.9.0 was...

Now only base options are supported. Like ``` 'CONN_MAX_AGE', 'ATOMIC_REQUESTS', 'AUTOCOMMIT', 'DISABLE_SERVER_SIDE_CURSORS', ``` But it would be great to support other options too.

enhancement
help wanted

We use comments, nested with 4 spaces. This works fine in environ 0.4.5 , but now generates an error in environ 0.9.0: > Invalid line: # Domain, without prefix ('www.')...

need reproducible example

I have an error when I run server with wsgi I am using python3.6 and Django3.2. I tried both django-environ==0.8.1 and django-environ==0.7.0 ``` App 10334 output: from .base import *...

bug

The current LDAP URL Schema parsing does not work well. It can't even handle canonical RFC examples, let alone be capable of validation. Given that the maintainers of this project...

tech debt
deprecation

The `read_env` documentation currently states: > If not given a path to a dotenv path, does filthy magic stack backtracking to find manage.py and then find the dotenv. Based on...

enhancement

In the Django Docs there is a [reference](https://docs.djangoproject.com/en/4.0/topics/auth/default/#django.contrib.auth.views.PasswordResetView) to [django-mailer](https://github.com/pinax/django-mailer/). Currently django-mailer is not a supported email backend scheme. I would lik to see environ support this backend. Therefore I'll...

enhancement

Support django-mailer as email backend. See #385

enhancement