import os DEFAULT_FROM_EMAIL = 'radio@esperanzah.be' RADIO_NAME = 'Radio Esperanzah!' RADIO_LONG_NAME = 'Radio Esperanzah! - 106.2 FM' RADIO_META_DESCRIPTION = 'La radio éphémère du festival Esperanzah!' WEBSITE_BASE_URL = 'https://radio.esperanzah.be/' PODCASTS_DEFAULT_IMAGE_PATH = '/static/img/appicon.png' DEFAULT_AGENDA_SLUG = None INSTALLED_APPS = ['panikweb_esperanzah'] + list(INSTALLED_APPS) # share user model with panikdb AUTH_USER_MODEL = 'aa.User' INSTALLED_APPS += ('panikdb.aa',) PODCAST_FILE_FORMATS = 'mp3' COMBO_PUBLIC_TEMPLATES = { 'standard': { 'name': 'Page', 'template': 'combo/page_template.html', 'placeholders': { 'content': { 'name': 'Contenu', }, }, }, 'fullwidth': { 'name': 'Page (pleine largeur)', 'template': 'combo/page_template_full_width.html', 'placeholders': { 'content': { 'name': 'Contenu', }, }, }, } extra_local_settings_file = os.environ.get( 'PANIKWEB_ESPERANZAH_SETTINGS_FILE', os.path.join(os.path.dirname(__file__), 'local_settings.py') ) if os.path.exists(extra_local_settings_file): exec(open(extra_local_settings_file).read())