I am learning Django using the django book and it is great. However, this does not work a bit on the django test server to serve image files and other media. Obviously, any page has a certain amount of image content outside of the HTML code that you put in the templates. And there are other files that need to be served, such as CSS files and possibly not native files (such as PDFs, spreadsheets, RDF, xml, etc.).
Of course, I can install all this in Apache, however I need to be able to service most of them (especially gifs, png, etc.) during the development process. It doesn't seem to me like an obvious way to tweak this.
Can someone tell me how django developers do this? What is the standard practice? Should I use Apache as a development server?
thank.
source
share