Re: Override runserver django 1.7

2014-10-06 Thread Collin Anderson
It's because the staticfiles app is already overriding the built in runserver command, and it's competing with your app. I think it's the only case of a contrib app overriding a built-in command. The migrate command is built-in to django and there are no contrib apps that override it. -- You

Re: Override runserver django 1.7

2014-10-06 Thread Carlos Perche
great, now it is working. but i have still a question, why the position in the installed_apps does not affect the migrate command and affect the runserver command ? thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from th

Re: Override runserver django 1.7

2014-10-06 Thread Collin Anderson
try putting the staticfiles app below saas in your INSTALLED_APPS -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To p

Override runserver django 1.7

2014-10-06 Thread Carlos Perche
Hello, why not is possible override the command runserver.py in my custom app in Django 1.7, like this # encoding: utf-8 from django.conf import settings from django.core.management.base import CommandError, BaseCommand # from django.contrib.staticfiles.management.commands.runserver import Comma