Merge branch 'canary' into feat/templates

This commit is contained in:
Mauricio Siu
2024-06-30 21:00:08 -06:00
11 changed files with 197 additions and 9 deletions

View File

@@ -34,7 +34,7 @@ export const templates: TemplateData[] = [
{
id: "calcom",
name: "Calcom",
version: "2.7.6",
version: "v2.7.6",
description:
"Calcom is a open source alternative to Calendly that allows to create scheduling and booking services.",
@@ -197,4 +197,36 @@ export const templates: TemplateData[] = [
tags: ["drawing"],
load: () => import("./excalidraw/index").then((m) => m.generate),
},
{
id: "documenso",
name: "Documenso",
version: "v1.5.6",
description:
"Documenso is the open source alternative to DocuSign for signing documents digitally",
links: {
github: "https://github.com/documenso/documenso",
website: "https://documenso.com/",
docs: "https://documenso.com/docs",
},
logo: "documenso.png",
tags: ["document-signing"],
load: () => import("./documenso/index").then((m) => m.generate),
},
{
id: "nocodb",
name: "NocoDB",
version: "0.251.0",
description:
"NocoDB is an opensource Airtable alternative that turns any MySQL, PostgreSQL, SQL Server, SQLite & MariaDB into a smart spreadsheet.",
links: {
github: "https://github.com/nocodb/nocodb",
website: "https://nocodb.com/",
docs: "https://docs.nocodb.com/",
},
logo: "nocodb.png",
tags: ["database", "spreadsheet", "low-code", "nocode"],
load: () => import("./nocodb/index").then((m) => m.generate),
},
];