From 579c39c8710bf7c3b6d68a491649db435214cebe Mon Sep 17 00:00:00 2001 From: AaricDev <84964307+aaricdev@users.noreply.github.com> Date: Sat, 28 Oct 2023 18:22:30 +0200 Subject: [PATCH] Add recipe for simply-stream/twitch-api-bundle:0.1 (#1557) * Add recipe for simply-stream/twitch-api-bundle:0.1 * Add missing newlines * Add bundles section to manifest.json --- .../config/packages/simplystream_twitch_api.yaml | 6 ++++++ simply-stream/twitch-api-bundle/0.1/manifest.json | 14 ++++++++++++++ 2 files changed, 20 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..8747e0ea4 --- /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)%' 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..a6222ab75 --- /dev/null +++ b/simply-stream/twitch-api-bundle/0.1/manifest.json @@ -0,0 +1,14 @@ +{ + "bundles": { + "SimplyStream\\TwitchApiBundle\\SimplyStreamTwitchApiBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "TWITCH_ID": "", + "TWITCH_SECRET": "", + "TWITCH_REDIRECT_URI": "", + "TWITCH_WEBHOOK_SECRET": "" + } +}