diff --git a/app.py b/app.py index 3a87503..c061ee7 100644 --- a/app.py +++ b/app.py @@ -100,7 +100,7 @@ def check_all_shows(shows: List[ShowConfiguration]) -> None: history = History("history.yaml") -config: Configuration = load_configuration_from_yaml("configuration.yaml") +config: Configuration = load_configuration_from_yaml("configuration/configuration.yaml") schedule.every(config.interval).minutes.do(check_all_shows, shows=config.shows) schedule.run_all() diff --git a/configuration-example.yaml b/configuration/configuration-example.yaml similarity index 100% rename from configuration-example.yaml rename to configuration/configuration-example.yaml