I am learning Django, using the django book, which is great. However, it is a little down on using the django test server to serve up image files and other media. Obviously, any page has some amount of image content beyond the straight up HTML that you put in templates. And there are various other files that need to be served up such as CSS files and possibly non native files (such as PDF, spreadsheets, RDF, xml and the like.)
Of course I can set all that up in Apache, however, I need to be able to serve most of these (especially gifs, pngs etc.) during the development process. There doesn't seem to me to be an obvious way to configure that.
Can someone tell me how django developers do this? What is the standard practice? Do I have to use Apache as the development server?
Thx.