From 03d0ea6e5795614960d449025e1e71b781cf83b3 Mon Sep 17 00:00:00 2001
From: David Trattnig <david@subsquare.at>
Date: Tue, 12 Mar 2024 22:17:03 +0100
Subject: [PATCH] chore: update content based on current engine-sample.yaml

---
 config/engine-tests.yaml | 36 ------------------------------------
 1 file changed, 36 deletions(-)

diff --git a/config/engine-tests.yaml b/config/engine-tests.yaml
index c1afa8b2..1bcfdd69 100644
--- a/config/engine-tests.yaml
+++ b/config/engine-tests.yaml
@@ -19,30 +19,6 @@ log:
   level: debug
 
 monitoring:
-  mail:
-    # Mail server credentials for sending email notifications (Admin and Programme Coordination)
-    host: mail.your-radio.org
-    port: 587
-    user: aura@subsquare.at
-    pwd: ---SECRET--PASSWORD---
-
-    coordinator:
-      # Set to "true" if you want to notify programme-coordinators about about fallback situations, otherwise "false"
-      enabled: false
-      # If you want to address multiple programme-coordinators separate their emails by space
-      mail: programme-coordinator@your-radio.org
-
-    admin:
-      # Set to "true" if you want to notify admins about incidents, otherwise "false"
-      enabled: false
-      # If you want to address multiple administrators separate their emails by space
-      mail: david@subsquare.at
-
-    # The FROM email address used when sending
-    from: monitoring@aura.engine
-    # A subject prefix allows applying filter rules in your mail client
-    subject_prefix: "[AURA Engine]" # default: [AURA Engine]
-
   heartbeat:
     # Seconds how often the vitality of Engine Core should be checked (default: 1)
     frequency: 1
@@ -52,14 +28,12 @@ monitoring:
     port: 43334
 
 api:
-  ## STEERING ##
   steering:
     # The URL to get the health status
     status: http://localhost:8000/api/v1/
     # The URL to get the Calendar via Steering
     calendar: http://localhost:8000/api/v1/playout
 
-  ## TANK ##
   tank:
     # The session name which is used to authenticate against Tank
     session: engine
@@ -70,7 +44,6 @@ api:
     # The URL to get playlist details via Tank
     playlist: http://localhost:8040/api/v1/playlists/${ID}
 
-  ## ENGINE-API ##
   engine:
     # Engine ID (1 or 2)
     number: 1
@@ -84,15 +57,6 @@ api:
     store_health: http://localhost:8008/api/v1/source/health/${ENGINE_NUMBER}
 
 scheduler:
-  # Database settings: Use 'postgresql', 'sqlite' or 'mysql'. In case of SQLite the "db_name" is the name of the file.
-  db:
-    type: sqlite
-    name: aura_engine
-    user: aura_engine
-    pwd: ---SECRET--PASSWORD---
-    host: localhost
-    charset: utf8
-    
   # Base path as seen by "engine-core", not accessed by "engine"; this is required to construct the absolute audio file path (check "Audio Store" in the docs)
   # Either provide an absolute base path or a relative one starting in the `engine` directory. In case of `engine-core` running in docker use `/var/audio/source`
   audio:
-- 
GitLab