2020-01-31 10:49:15 +01:00
|
|
|
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
|
|
|
|
#
|
2020-02-03 11:34:45 +01:00
|
|
|
# SUSPEND_PUBLIC = True # Set this to True to ensure, that unauthenticated users have no permission
|
2020-01-31 10:49:15 +01:00
|
|
|
|
|
|
|
#
|
|
|
|
# Style settings
|
|
|
|
#
|
|
|
|
# DEFAULT_THEME = 'clear-red'
|
|
|
|
# THUMBNAIL_SIZES = [137, 175, 250]
|
|
|
|
# WEBNAIL_SIZES = [450, 1100, 1750]
|
|
|
|
|
|
|
|
#
|
|
|
|
# Content settings
|
|
|
|
#
|
2020-02-03 11:34:45 +01:00
|
|
|
# SORT_BY_DATE = True # Sorting by name if False
|
2020-01-31 10:49:15 +01:00
|
|
|
# SHOW_IMAGE = True
|
|
|
|
# SHOW_VIDEO = True
|
|
|
|
# SHOW_AUDIO = False
|
|
|
|
# SHOW_OTHER = False
|