From e3327862054b5458934491173d09bc0d51b0ecf1 Mon Sep 17 00:00:00 2001 From: Jannik Date: Thu, 24 Oct 2024 09:38:53 +0200 Subject: [PATCH] Add 21torr/hosting recipe for 3.2+ (#1697) --- 21torr/hosting/3.2/config/packages/hosting.yaml | 3 +++ 21torr/hosting/3.2/config/routes/hosting.yaml | 3 +++ 21torr/hosting/3.2/manifest.json | 15 +++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 21torr/hosting/3.2/config/packages/hosting.yaml create mode 100644 21torr/hosting/3.2/config/routes/hosting.yaml create mode 100644 21torr/hosting/3.2/manifest.json diff --git a/21torr/hosting/3.2/config/packages/hosting.yaml b/21torr/hosting/3.2/config/packages/hosting.yaml new file mode 100644 index 000000000..e8c399bb1 --- /dev/null +++ b/21torr/hosting/3.2/config/packages/hosting.yaml @@ -0,0 +1,3 @@ +hosting: + tier: '%env(HOSTING_TIER)%' + installation: "%env(HOSTING_INSTALLATION)%" diff --git a/21torr/hosting/3.2/config/routes/hosting.yaml b/21torr/hosting/3.2/config/routes/hosting.yaml new file mode 100644 index 000000000..935abc0c6 --- /dev/null +++ b/21torr/hosting/3.2/config/routes/hosting.yaml @@ -0,0 +1,3 @@ +hosting: + resource: '@HostingBundle/config/routes.yaml' + prefix: /hosting diff --git a/21torr/hosting/3.2/manifest.json b/21torr/hosting/3.2/manifest.json new file mode 100644 index 000000000..71825c6ab --- /dev/null +++ b/21torr/hosting/3.2/manifest.json @@ -0,0 +1,15 @@ +{ + "bundles": { + "Torr\\Hosting\\HostingBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + }, + "env": { + "HOSTING_TIER": "development", + "HOSTING_INSTALLATION": "" + }, + "gitignore": [ + "/.build-info.json" + ] +}