diff --git a/docs/development.rst b/docs/development.rst index 19c4c758b20a80c5f2b78733a63fb850f2e18843..e0955a8e48b8fa01721bc366a03680aad167f789 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -195,18 +195,19 @@ This is just a rough outline of what needs to be done. STATIC_URL = '/static/' MEDIA_URL = '/media/' - # Absolute filesystem path to directory that will hold user-uploaded - # files. + # Directory for storing and serving user-uploaded files. MEDIA_ROOT = os.path.normpath(os.path.join(ASSETS_ROOT, "media")) - # Absolute filesystem path to directory that will hold static files. + # Directory for storing and serving static files. STATIC_ROOT = os.path.normpath(os.path.join(ASSETS_ROOT, "static")) - # Additional locations for static files. Useful for project-wide overrides of - # default static files. + # Additional directories from which to read the static files. This can be + # used for overriding application static files on project basis. STATICFILES_DIRS = ( os.path.normpath(os.path.join(BASE_DIR, "static")), ) + - Update remaining Python files. You may want to template things like + documentation version, Django version etc. 9. At this point you need to be a bit more creative. Depending on Django version, you may need to isolate different settings to be part of the base