Reputation: 24981
I've installed django on my windows machine, added the pydev and django plugins for eclipse, create a django project, and ran manage.py createapp
to create one app. Now when I run manage.py runserver
(via eclipse's "custom command" option") It says Validating models...
but when I go to http://localhost:8000 I get no response, as though the server is not running. What am I doing wrong?
Upvotes: 0
Views: 833
Reputation: 25680
Try running with --noreload
to avoid getting two processes. It helps with error output redirection in eclipse, and may give you more hints towards the actual problem.
Also, do the same from the command-line to see if you get the same problem.
Update: Per Fabio's comment above, you can work around this problem by hacking the code, as explained in this question.
Upvotes: 2