I've gone through https://docs.djangoproject.com/en/dev/howto/static-files/ & related Q&A on stackoverflow regarding placement of static files on Django.
Each project app has its own dedicated js & css files. Plus there are shared js & css files that are common across all apps (e.g. jquery).
app1
└── static
└── app1
├── index.js
├── index.css
├── jQuery.1.10.2.js
└── jquery-ui-1.10.3\...
app2
└── static
└── app2
├── index.js
├── index.css
├── jQuery.1.10.2.js
└── jquery-ui-1.10.3\...
Question (specific to a development environment):
Where should I place the jquery & jquery-ui files? The above setup leads to redundancy.
How should I name the dedicated js & css files. I'm asking this because as the project grows, there'll be multiple apps all having an index.js file. It'll be very confusing with 10 index.js files open in an editor. Should I call them app1_index.js?