feat(templates): add appsmith

This commit is contained in:
Mauricio Siu
2024-06-30 00:24:16 -06:00
parent ed0f3cadd6
commit 2e3b0ddcde
13 changed files with 60 additions and 15 deletions

View File

@@ -167,4 +167,19 @@ export const templates: TemplateData[] = [
tags: ["cms"],
load: () => import("./odoo/index").then((m) => m.generate),
},
{
id: "appsmith",
name: "Appsmith",
version: "v1.29",
description:
"Appsmith is a free and open source platform for building internal tools and applications.",
logo: "appsmith.png",
links: {
github: "https://github.com/appsmithorg/appsmith",
website: "https://appsmith.com/",
docs: "https://docs.appsmith.com/",
},
tags: ["cms"],
load: () => import("./appsmith/index").then((m) => m.generate),
},
];