123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- =============
- Configuration
- =============
- django Organice comes with sensible defaults for almost anything. Yet still, you can customize its
- behavior with the help of the settings listed in this section.
- .. _settings:
- Settings
- ========
- You may define any of the following options in your project's ``settings`` to override the default
- value.
- :const:`ORGANICE_URL_PATH_ADMIN`
- --------------------------------
- :Default: ``admin``
- The URL path for accessing the Django Administration backend (e.g. ``www.example.com/admin``). Must
- be non-empty. Use an identifier only, no white space, no leading or trailing slash.
- :const:`ORGANICE_URL_PATH_BLOG`
- -------------------------------
- :Default: ``blog``
- The URL path for the blog's start page (e.g. ``www.example.com/blog``). Must be non-empty. Use an
- identifier only, no white space, no leading or trailing slash.
- :const:`ORGANICE_URL_PATH_NEWSLETTER`
- -------------------------------------
- :Default: ``newsletter``
- The URL path for accessing newsletter functionality on the front-end (e.g.
- ``www.example.com/newsletter``). Must be non-empty. Use an identifier only, no white space, no
- leading or trailing slash.
- :const:`ORGANICE_URL_PATH_TODO`
- -------------------------------
- :Default: ``todo``
- The URL path for accessing todo list functionality on the front-end (e.g. ``www.example.com/todo``).
- Must be non-empty. Use an identifier only, no white space, no leading or trailing slash.
- Third Party Settings
- ====================
- Analytics Providers
- -------------------
- The `analytics`:index: services supported by ``django-analytical`` are enabled by setting various
- service properties in your settings file. The properties are documented in `their documentation`_.
- For security reasons you shouldn't add those to your common settings file, but to
- ``settings.production``.
- .. _`their documentation`: https://pythonhosted.org/django-analytical/install.html#enabling-the-services
|