feat: add glitchtip template

This commit is contained in:
Mauricio Siu
2024-06-30 23:49:29 -06:00
parent addd102d39
commit a43627d869
4 changed files with 108 additions and 0 deletions

View File

@@ -304,4 +304,18 @@ export const templates: TemplateData[] = [
tags: ["database", "dashboard"],
load: () => import("./metabase/index").then((m) => m.generate),
},
{
id: "glitchtip",
name: "Glitchtip",
version: "v4.0",
description: "Glitchtip is simple, open source error tracking",
logo: "glitchtip.png",
links: {
github: "https://github.com/glitchtip/glitchtip",
website: "https://glitchtip.com/",
docs: "https://glitchtip.com/documentation",
},
tags: ["hosting"],
load: () => import("./glitchtip/index").then((m) => m.generate),
},
];