fix: better recipe meta defaults
continuous-integration/drone/push Build is passing Details

This commit is contained in:
decentral1se 2021-12-26 04:10:50 +01:00
parent cdc08ae95a
commit 027c8a1420
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410
1 changed files with 9 additions and 9 deletions

View File

@ -119,14 +119,14 @@ Happy Hacking!
func newRecipeMeta(recipeName string) recipeMetadata {
return recipeMetadata{
Name: recipeName,
Description: "",
Category: "",
Status: "",
Image: "",
Healthcheck: "",
Backups: "",
Email: "",
Tests: "",
SSO: "",
Description: "> One line description of the recipe",
Category: "Apps",
Status: "0",
Image: fmt.Sprintf("[`%s`](https://hub.docker.com/r/%s), 4, upstream", recipeName, recipeName),
Healthcheck: "No",
Backups: "No",
Email: "No",
Tests: "No",
SSO: "No",
}
}