I have many projects working in ubuntu with python2.7 and virtualenv/virtualenvwrapper, in my work some developers works with macosx and windows, generally I create the project as usual:
django-admin.py start project x
And we use svn for cvs, but in some point, without nothing rational for me, when I try something like:
python manage.py runserver
doesn't work, but is just for me and is in my laptop, that doesn't happens in productions servers or another developers.
any ideas?
I got this error:
Error: Can't find the file 'settings.py' in the directory containing 'manage.py'. It appears you've customized things. You'll have to run django-admin.py, passing it your settings module. (If the file settings.py does indeed exist, it's causing an ImportError somehow.)
But obviously, the settings file exists and is in the same folder of manage.py file, and doesn't work just for me...
This happens too with django and appengine