1234567891011121314151617181920212223242526272829303132 |
- import os
-
- BASE_DIR = os.path.dirname(os.path.abspath(__file__))
-
- #
- # General settings
- #
- # SECRET_KEY = 'define a secret key'
- #
- # ITEM_ROOT = os.path.join(BASE_DIR, 'data', 'example_data')
- # ALLOWED_HOSTS = []
-
- #
- # Access Right settings
- #
- # SUSPEND_PUBLIC = True # Set this to True to ensure, that unauthenticated users have no permission
-
- #
- # Style settings
- #
- # DEFAULT_THEME = 'clear-red'
- # THUMBNAIL_SIZES = [137, 175, 250]
- # WEBNAIL_SIZES = [450, 1100, 1750]
-
- #
- # Content settings
- #
- # SORT_BY_DATE = True # Sorting by name if False
- # SHOW_IMAGE = True
- # SHOW_VIDEO = True
- # SHOW_AUDIO = False
- # SHOW_OTHER = False
|