Recipes for Monofony metapackages (#1342)

This commit is contained in:
Loïc Frémont
2022-02-19 10:40:50 +01:00
committed by GitHub
parent e573d85cde
commit cc76580a0c
4 changed files with 56 additions and 0 deletions

View File

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

View File

@@ -0,0 +1,8 @@
{
"copy-from-package": {
".recipe/config/": "%CONFIG_DIR%/",
".recipe/spec/": "spec/",
".recipe/src/": "%SRC_DIR%/",
".recipe/tests/": "tests/"
}
}

View File

@@ -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"
]
}

View File

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