]> git.0d.be Git - panikweb.git/commitdiff
settings: remove panik specific content
authorFrédéric Péters <fpeters@0d.be>
Sun, 23 Jul 2023 08:01:41 +0000 (10:01 +0200)
committerFrédéric Péters <fpeters@0d.be>
Sun, 23 Jul 2023 08:01:41 +0000 (10:01 +0200)
panikweb/settings.py

index 21ef875c31c117de81a546d8fa87e9c0a1be016c..b065ffa5831cf2a2a8d45a6a57e32e8cc9aea4fe 100644 (file)
@@ -14,7 +14,7 @@ ADMINS = (
     # ('Your Name', 'your_email@domain.com'),
 )
 MANAGERS = ADMINS
-DEFAULT_FROM_EMAIL = 'info@radiopanik.org'
+DEFAULT_FROM_EMAIL = 'info@example.net'
 
 LOGIN_REDIRECT_URL = '/'
 
@@ -238,25 +238,15 @@ COMBO_MAP_ATTRIBUTION = ''
 JSON_CELL_TYPES = {}
 COMBO_CELL_ASSET_SLOTS = {}
 
-RADIO_NAME = 'Radio Panik'
-RADIO_LONG_NAME = 'Radio Panik - 105.4 FM'
+RADIO_NAME = 'Example Radio'
+RADIO_LONG_NAME = 'Example Radio'
 RADIO_META_DESCRIPTION = None
-WEBSITE_BASE_URL = 'https://www.radiopanik.org/'
-PODCASTS_DEFAULT_IMAGE_PATH = '/static/img/logo-panik-500.png'
-RADIO_STREAM_URLS = [
-    {
-        'id': 'ogg',
-        'm3u_url': 'https://streaming.domainepublic.net/radiopanik.ogg.m3u',
-        'url': 'https://streaming.domainepublic.net/radiopanik.ogg',
-        'type': 'audio/ogg',
-    },
-    {
-        'id': 'mp3',
-        'm3u_url': 'https://streaming.domainepublic.net/radiopanik.mp3.m3u',
-        'url': 'https://streaming.domainepublic.net/radiopanik.mp3',
-        'type': 'audio/mpeg',
-    },
-]
+WEBSITE_BASE_URL = 'https://www.example.net/'
+PODCASTS_DEFAULT_IMAGE_PATH = ''
+
+# list of radio streams
+# ex: [{'id': 'ogg', 'm3u_url': '...', 'url': '...', 'type': 'audio/ogg'}]
+RADIO_STREAM_URLS = []
 
 HOME_EMISSIONS_COUNT = 3
 HOME_FOCUS_COUNT = 3