From f3db80ea3101ff969680394dfe7d63ba15752293 Mon Sep 17 00:00:00 2001 From: AaricDev Date: Thu, 26 Oct 2023 15:08:28 +0200 Subject: [PATCH 1/3] Add recipe for simply-stream/twitch-api-bundle:0.1 --- .../0.1/config/packages/simplystream_twitch_api.yaml | 6 ++++++ simply-stream/twitch-api-bundle/0.1/manifest.json | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100644 simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml create mode 100644 simply-stream/twitch-api-bundle/0.1/manifest.json diff --git a/simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml b/simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml new file mode 100644 index 000000000..b35a4e9d0 --- /dev/null +++ b/simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml @@ -0,0 +1,6 @@ +simplystream_twitch_api: + twitch_id: '%env(TWITCH_ID)%' + twitch_secret: '%env(TWITCH_SECRET)%' + redirect_uri: '%env(TWITCH_REDIRECT_URI)%' + webhook: + secret: '%env(TWITCH_WEBHOOK_SECRET)%' \ No newline at end of file diff --git a/simply-stream/twitch-api-bundle/0.1/manifest.json b/simply-stream/twitch-api-bundle/0.1/manifest.json new file mode 100644 index 000000000..a022c9b6c --- /dev/null +++ b/simply-stream/twitch-api-bundle/0.1/manifest.json @@ -0,0 +1,11 @@ +{ + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "TWITCH_ID": "", + "TWITCH_SECRET": "", + "TWITCH_REDIRECT_URI": "", + "TWITCH_WEBHOOK_SECRET": "" + } +} \ No newline at end of file From fefc6e5adcd53b7833c79547fed7ad76b7846c64 Mon Sep 17 00:00:00 2001 From: AaricDev Date: Fri, 27 Oct 2023 13:58:32 +0200 Subject: [PATCH 2/3] Add missing newlines --- .../0.1/config/packages/simplystream_twitch_api.yaml | 2 +- simply-stream/twitch-api-bundle/0.1/manifest.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml b/simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml index b35a4e9d0..8747e0ea4 100644 --- a/simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml +++ b/simply-stream/twitch-api-bundle/0.1/config/packages/simplystream_twitch_api.yaml @@ -3,4 +3,4 @@ simplystream_twitch_api: twitch_secret: '%env(TWITCH_SECRET)%' redirect_uri: '%env(TWITCH_REDIRECT_URI)%' webhook: - secret: '%env(TWITCH_WEBHOOK_SECRET)%' \ No newline at end of file + secret: '%env(TWITCH_WEBHOOK_SECRET)%' diff --git a/simply-stream/twitch-api-bundle/0.1/manifest.json b/simply-stream/twitch-api-bundle/0.1/manifest.json index a022c9b6c..1e9db8ca4 100644 --- a/simply-stream/twitch-api-bundle/0.1/manifest.json +++ b/simply-stream/twitch-api-bundle/0.1/manifest.json @@ -8,4 +8,4 @@ "TWITCH_REDIRECT_URI": "", "TWITCH_WEBHOOK_SECRET": "" } -} \ No newline at end of file +} From 5ac2b4ea9ea1541a35155f46a0415333495bd73e Mon Sep 17 00:00:00 2001 From: AaricDev Date: Fri, 27 Oct 2023 22:22:33 +0200 Subject: [PATCH 3/3] Add bundles section to manifest.json --- simply-stream/twitch-api-bundle/0.1/manifest.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/simply-stream/twitch-api-bundle/0.1/manifest.json b/simply-stream/twitch-api-bundle/0.1/manifest.json index 1e9db8ca4..a6222ab75 100644 --- a/simply-stream/twitch-api-bundle/0.1/manifest.json +++ b/simply-stream/twitch-api-bundle/0.1/manifest.json @@ -1,4 +1,7 @@ { + "bundles": { + "SimplyStream\\TwitchApiBundle\\SimplyStreamTwitchApiBundle": ["all"] + }, "copy-from-recipe": { "config/": "%CONFIG_DIR%/" },