What would be a good structure (best practise) for the folders in a Django application (1.7)? I'm not sure where to put the static data and file Uploads.
In all my projects it turns out different, but currently I have something like this (I left out a few obvious folders/files):
project/ bin/ include/ ... src/ manage.py main/ - settings.py - urls.py signup/ static/ static_/ + css + img + js static/ templates/ - index.html - base.html - ... uploads/ And also, I'd prefer to see url's like for example site.com/css/file.css instead of site.com/static/css/file.css , but somehow thats more complicated then it seems. How can that be accomplished?