From 577b45237ae79808dcff413551add49d1a103fef Mon Sep 17 00:00:00 2001 From: Joey Date: Sun, 31 Aug 2025 08:22:33 +0200 Subject: [PATCH] [calliostro/last-fm-client-bundle] Add recipe (#1852) --- .../1.0/config/calliostro_last_fm_client.yaml | 11 +++++++++++ calliostro/last-fm-client-bundle/1.0/manifest.json | 13 +++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 calliostro/last-fm-client-bundle/1.0/config/calliostro_last_fm_client.yaml create mode 100644 calliostro/last-fm-client-bundle/1.0/manifest.json diff --git a/calliostro/last-fm-client-bundle/1.0/config/calliostro_last_fm_client.yaml b/calliostro/last-fm-client-bundle/1.0/config/calliostro_last_fm_client.yaml new file mode 100644 index 00000000..df6031ac --- /dev/null +++ b/calliostro/last-fm-client-bundle/1.0/config/calliostro_last_fm_client.yaml @@ -0,0 +1,11 @@ +calliostro_last_fm_client: + # Get your API credentials from https://www.last.fm/api/account/create + api_key: '%env(LASTFM_API_KEY)%' + secret: '%env(LASTFM_SECRET)%' + + # Optional: session key for user-specific actions (scrobbling, etc.) + # session: '%env(LASTFM_SESSION_KEY)%' + + # Optional: HTTP client configuration + # http_client_options: + # timeout: 30 diff --git a/calliostro/last-fm-client-bundle/1.0/manifest.json b/calliostro/last-fm-client-bundle/1.0/manifest.json new file mode 100644 index 00000000..440dd06b --- /dev/null +++ b/calliostro/last-fm-client-bundle/1.0/manifest.json @@ -0,0 +1,13 @@ +{ + "bundles": { + "Calliostro\\LastFmClientBundle\\CalliostroLastFmClientBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "LASTFM_API_KEY": "", + "LASTFM_SECRET": "", + "#LASTFM_SESSION_KEY": "" + } +}