Settings

The settings.py is the global configuration file containing many constants. MEDIA is where files are uploaded to by users, while STATIC is where files are served from. The _ROOT postfix denotes a directory path and _URL postfix a URL path. These are set like this::

...
STATIC_ROOT = os.path.join(...)
...
STATIC_URL = '/static/'
...

Tags: django

Edit this page
Wiki-logo