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 { func newRecipeMeta(recipeName string) recipeMetadata {
return recipeMetadata{ return recipeMetadata{
Name: recipeName, Name: recipeName,
Description: "", Description: "> One line description of the recipe",
Category: "", Category: "Apps",
Status: "", Status: "0",
Image: "", Image: fmt.Sprintf("[`%s`](https://hub.docker.com/r/%s), 4, upstream", recipeName, recipeName),
Healthcheck: "", Healthcheck: "No",
Backups: "", Backups: "No",
Email: "", Email: "No",
Tests: "", Tests: "No",
SSO: "", SSO: "No",
} }
} }