Lots of useful information here and kudos to the author for composing a well-written post: summary of the issue, "here's how we fixed it" (with code samples) and concludes with some caveats/things to watch for. (Reminder: quality content like this is how inbound marketing works)<p>IMHO the official Django docs are some of the best you'll find anywhere of any open source project. My suggestion, though, is to read and re-read and make sure you gather all documented information about $YOUR_TOPIC before formulating your own game plan. For example, here is the chapter on handling static assets in Django:<p><a href="https://docs.djangoproject.com/en/dev/howto/static-files/" rel="nofollow">https://docs.djangoproject.com/en/dev/howto/static-files/</a><p>There are a lot of relevant links on that page that are worth following if you want to make sure you a) get the picture and b) know how you want it to all come together for your project.<p>Lastly, on the topic of storing assets: if you want to offer a Django-ready library for your new cloud storage startup/setup, consider writing your own file storage handler<p><a href="https://docs.djangoproject.com/en/dev/howto/custom-file-storage/" rel="nofollow">https://docs.djangoproject.com/en/dev/howto/custom-file-stor...</a>