diff --git a/cli/catalogue/catalogue.go b/cli/catalogue/catalogue.go index df548c8a..4806f930 100644 --- a/cli/catalogue/catalogue.go +++ b/cli/catalogue/catalogue.go @@ -73,7 +73,8 @@ var catalogueGenerateCommand = cli.Command{ Description: ` This command generates a new copy of the recipe catalogue which can be found on: - https://recipes.coopcloud.tech + https://recipes.coopcloud.tech (website that humans read) + https://recipes.coopcloud.tech/recipes.json (JSON that Abra reads) It polls the entire git.coopcloud.tech/coop-cloud/... recipe repository listing, parses README.md and git tags of those repositories to produce recipe diff --git a/pkg/recipe/recipe.go b/pkg/recipe/recipe.go index 9e80067d..52e83b7d 100644 --- a/pkg/recipe/recipe.go +++ b/pkg/recipe/recipe.go @@ -26,7 +26,7 @@ import ( ) // RecipeCatalogueURL is the only current recipe catalogue available. -const RecipeCatalogueURL = "https://recipes.coopcloud.tech" +const RecipeCatalogueURL = "https://recipes.coopcloud.tech/recipes.json" // ReposMetadataURL is the recipe repository metadata const ReposMetadataURL = "https://git.coopcloud.tech/api/v1/orgs/coop-cloud/repos"