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/" + } +}