I am relatively new at Django but have been loving it so far... Sorry in advance for telling a long story, but I think it helps to understand how I got here.
I originally set up a project under my /home/<user>/workspace directory in eclipse. I got the basic models created and the site was working well, so I figured it was time to put it where others could see it and give feedback. So I copied the directory tree to a reasonable location to run a bit more production-like. I copied it to /var/django and got it running under Apache/WSGI. It was relatively straightforward. And since the database tables were all set up, the models just worked. Since it work so well, I switched my development to work directly in /var/django and never looked back. I also never tried to run the development server here or even any manage.py commands. (yes, I know... simple mistake)
Today, I tried to modify a model for the first time and tried to run python manage.py syncdb and was surprised to see it not complain about the mismatch between the model and the database schema. So I spent a bit of time trying out other commands such as python manage.py sql accounts and I got an error:
Error: app with label accounts could not be found. Are you sure your INSTALLED_APPS settings is correct?
So I tried the real test and ran python manage.py runserver, which started without any errors, and hit it with the browser on the test port. Imagine my surprise to see the default django page suggesting that I run startapp. I clearly have an app running as the site works great under Apache.
I have to believe I am missing something very basic. I have even debugged into the django source using the python manage.py sql accounts command and can see manage.py finding the settings.py file and loading my app strings inside the INSTALLED_APPS section. But it gets deeper into the code (into a model called loader) and suddenly settings.INSTALLED_APPS has a much smaller tuple of strings.
I have done quite a bit of online searching but have not stumbled upon the proper query to reveal what has happened. Any ideas?