From 7b176bd87726589d166dada06de8fd1b2b5f5e6d Mon Sep 17 00:00:00 2001 From: songtianlun Date: Sun, 18 Aug 2024 01:38:25 +0800 Subject: [PATCH] feat: add supabase templates --- apps/dokploy/public/templates/supabase.svg | 1 + apps/dokploy/templates/templates.ts | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 apps/dokploy/public/templates/supabase.svg diff --git a/apps/dokploy/public/templates/supabase.svg b/apps/dokploy/public/templates/supabase.svg new file mode 100644 index 00000000..7221dc4f --- /dev/null +++ b/apps/dokploy/public/templates/supabase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/apps/dokploy/templates/templates.ts b/apps/dokploy/templates/templates.ts index 6e4867ba..6c18d5b0 100644 --- a/apps/dokploy/templates/templates.ts +++ b/apps/dokploy/templates/templates.ts @@ -1,6 +1,21 @@ import type { TemplateData } from "./types/templates-data.type"; export const templates: TemplateData[] = [ + { + id: "supabase", + name: "SupaBase", + version: "1.24.07", + description: + "The open source Firebase alternative. Supabase gives you a dedicated Postgres database to build your web, mobile, and AI applications. ", + links: { + github: "https://github.com/supabase/supabase", + website: "https://supabase.com/", + docs: "https://supabase.com/docs/guides/self-hosting", + }, + logo: "supabase.svg", + load: () => import("./supabase/index").then((m) => m.generate), + tags: ["database", "firebase", "postgres"], + }, { id: "pocketbase", name: "Pocketbase",