Je passe à Django 1.3 et trouve cette séparation un peu déroutante dans cette séparation. Voici comment settings.py
par défaut ressemble à:
# Absolute filesystem path to the directory that will hold user-uploaded files.
# Example: "/home/media/media.lawrence.com/media/"
MEDIA_ROOT = ''
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash if there is a path component (optional in other cases).
# Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
MEDIA_URL = ''
# Absolute path to the directory that holds static files.
# Example: "/home/media/media.lawrence.com/static/"
STATIC_ROOT = ''
# URL that handles the static files served from STATIC_ROOT.
# Example: "http://media.lawrence.com/static/"
STATIC_URL = '/static/'
Que devrais-je mettre en MEDIA_ROOT
et a STATIC_ROOT
? Ces répertoires devraient-ils être séparés? Quelle est la différence?