Daniele Faraglia
Daniele Faraglia
Hi, I think this feature could be useful. As @konoufo said, callable defaults are ubiquitous in Python, and we could implement it as easy. Here https://github.com/joke2k/django-environ/blob/develop/environ/environ.py#L279 we could handle this,...
@sant527 @ptink nice discussion, I fought with this problem a lot of time and I tried always to keep one `settings.py` to avoid the inheritance of environment specific setting file....
@sant527 is a common practice split requirements.txt by environments. https://github.com/pydanny/cookiecutter-django/tree/master/%7B%7Bcookiecutter.project_slug%7D%7D/requirements In this case, using my trick to fast exchange environment with `.env` `ENV` variable, you have to be sure that...
hi, yes we can add it, but perhaps we should generalize the concept to include other tasks systems. https://github.com/binarydud/pyres http://python-rq.org/ We could make a list with the respective python modules...
It seems just an url, so we can parse with `url('BROKER_URL')`. Why do you need to parse it? To check the protocol `amqp://` ?
Actually we can add `RECONNECT` to `Env._DB_BASE_OPTION` but there is another problem, the value `true` isn't casted as boolean, couse `_case_int()` don't handle that.
Hi, thank you for this PR... nowadays is very easy with python 3. Take a look on https://github.com/joke2k/faker/pull/777 if you want to improve the provider.
I've same validation errors. For hentry format I miss "updated" and "author" for blog posts, and just the "author" for pages. For hatom format I miss "author" for homepage and...
Like normal cookies, setting negative expires days. `xd_cookie.set('key', value')` ... then `xd_cookie.set('key', '', -1)`
> @joke2k can you take a look at this one too? Also fixing a URL... I suppose that is passed enough time XD