Search code examples
djangodjango-manage.py

Django manage.py runserver never finishes "validating models"


I am trying to follow the django tutorial. I am running on windows+eclipse. When I run python manage.py runserver I get the message Validating models... and afterwards see no progress...

Am I doing something wrong?


Solution

  • I've got my answer in another question: can't get django to work in eclipse + windows

    When I ran the server with the --noreload option, I saw that there's an exception thrown. After I fixed that, the output does complete, and says:

    Validating models...
    0 errors found
    
    Django version 1.2.1, using settings 'XXX'
    Development server is running at http://127.0.0.1:8000/
    Quit the server with CTRL-BREAK.