From cc76580a0c279f4d601174ecb2d520e26c98ee09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Fr=C3=A9mont?= Date: Sat, 19 Feb 2022 10:40:50 +0100 Subject: [PATCH] Recipes for Monofony metapackages (#1342) --- monofony/admin-meta/0.8/manifest.json | 11 +++++++++++ monofony/api-meta/0.8/manifest.json | 8 ++++++++ monofony/core-meta/0.8/manifest.json | 27 +++++++++++++++++++++++++++ monofony/front-meta/0.8/manifest.json | 10 ++++++++++ 4 files changed, 56 insertions(+) create mode 100644 monofony/admin-meta/0.8/manifest.json create mode 100644 monofony/api-meta/0.8/manifest.json create mode 100644 monofony/core-meta/0.8/manifest.json create mode 100644 monofony/front-meta/0.8/manifest.json diff --git a/monofony/admin-meta/0.8/manifest.json b/monofony/admin-meta/0.8/manifest.json new file mode 100644 index 00000000..c1027c38 --- /dev/null +++ b/monofony/admin-meta/0.8/manifest.json @@ -0,0 +1,11 @@ +{ + "copy-from-package": { + ".recipe/assets/": "assets/", + ".recipe/config/": "%CONFIG_DIR%/", + ".recipe/features/": "features/", + ".recipe/spec/": "spec/", + ".recipe/src/": "%SRC_DIR%/", + ".recipe/templates/": "templates/", + ".recipe/tests/": "tests/" + } +} diff --git a/monofony/api-meta/0.8/manifest.json b/monofony/api-meta/0.8/manifest.json new file mode 100644 index 00000000..e9f514df --- /dev/null +++ b/monofony/api-meta/0.8/manifest.json @@ -0,0 +1,8 @@ +{ + "copy-from-package": { + ".recipe/config/": "%CONFIG_DIR%/", + ".recipe/spec/": "spec/", + ".recipe/src/": "%SRC_DIR%/", + ".recipe/tests/": "tests/" + } +} diff --git a/monofony/core-meta/0.8/manifest.json b/monofony/core-meta/0.8/manifest.json new file mode 100644 index 00000000..c7b2d120 --- /dev/null +++ b/monofony/core-meta/0.8/manifest.json @@ -0,0 +1,27 @@ +{ + "container": { + "locale": "en", + "email_contact": "contact@example.com", + "email_name": "Contact AppName", + "email_sender": "no-reply@example.com" + }, + "copy-from-package": { + ".recipe/config/": "%CONFIG_DIR%/", + ".recipe/features/": "features/", + ".recipe/migrations/": "migrations/", + ".recipe/spec/": "spec/", + ".recipe/src/": "%SRC_DIR%/", + ".recipe/templates/": "templates/", + ".recipe/tests/": "tests/", + ".recipe/translations/": "translations/", + ".recipe/config-builder.js": "config-builder.js" + }, + "env": { + "OAUTH_CLIENT_ID": "%generate(secret)%", + "OAUTH_SECRET": "%generate(secret)%" + }, + "gitignore": [ + "/public/assets", + "/public/media" + ] +} diff --git a/monofony/front-meta/0.8/manifest.json b/monofony/front-meta/0.8/manifest.json new file mode 100644 index 00000000..fc77ec57 --- /dev/null +++ b/monofony/front-meta/0.8/manifest.json @@ -0,0 +1,10 @@ +{ + "copy-from-package": { + ".recipe/assets/": "assets/", + ".recipe/config/": "%CONFIG_DIR%/", + ".recipe/features/": "features/", + ".recipe/src/": "%SRC_DIR%/", + ".recipe/templates/": "templates/", + ".recipe/tests/": "tests/" + } +}