feat: nocodb template

This commit is contained in:
DarkPhoenix2704
2024-06-30 23:25:47 +05:30
parent 2d53a700f6
commit 36af22630b
4 changed files with 88 additions and 0 deletions

View File

@@ -63,4 +63,20 @@ export const templates: TemplateData[] = [
tags: ["document-signing"],
load: () => import("./documenso/index").then((m) => m.generate),
},
{
id: "nocodb",
name: "NocoDB",
version: "0.250.2",
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),
},
];