Re: Testing Django using Docker

2015-11-09 Thread Enrique Paredes
There's one good basic example of docker-compose in pydanny's cookiecutter django package, if you need it. — Sent from Mailbox On Mon, Nov 9, 2015 at 9:04 AM, Jani Tiainen wrote: > Hi, > I think you should document this in Wiki at least. > Few additional questions notes: > What's the Docker

Re: Why leave explicit null=True when blank is True in IntegerField, DateField etc?

2015-09-16 Thread Enrique Paredes
Well, one can call the Zen of python, about just exactly that. explicit is better than implicit. In this case, explicit becomes a problem for getting used to it, versus implicit that becomes a strange behavior/bug/wtf when you don't expect it. I'll rather see a ValueError if this is somethi

Re: Feature: Support a javascript template language on the server

2015-05-31 Thread Enrique Paredes
IMHO, this can be easily solved with nunjucks.js and jinja which are both interchangeable, but in my experience it's better to had 2 template languages.  Using only one tpl gives you the need to implement the same in the django views than in the js controller wich is "harsh" coupled and a PITA.

Re: Guessable entry points

2015-05-01 Thread Enrique Paredes
So along this line of thought,  `django-admin` is a good command name?  To me the admin, in the django world is a clear distint concept to what this command does. Besides to be used to it, seems more natural to call it `django`.  Cheers, E. On Fri, May 1, 2015 at 2:33 PM, Michael Ma

Re: Drop the TEMPLATE_DEBUG setting

2015-02-15 Thread Enrique Paredes
+1 Last year I do an app to develop templates on the fly granting template_debug dump to some users (designers) and even in that escenario is looking good. Go for it. On Sun, Feb 15, 2015 at 4:42 PM, Marc Tamlyn wrote: > +1 to removing it > On 15 Feb 2015 14:16, "Aymeric Augustin" > wrote: >