feat: doublezero template

This commit is contained in:
Radu Ciocan
2024-07-06 14:29:32 +01:00
parent 45aae520d8
commit bab93f8145
4 changed files with 77 additions and 0 deletions

View File

@@ -331,5 +331,19 @@ export const templates: TemplateData[] = [
},
tags: ['chat'],
load: () => import('./open-webui/index').then((m) => m.generate),
},
{
id: 'doublezero',
name: 'Double Zero',
version: 'v0.0',
description: 'A markdown email micro service for the people! 00 is a bring your own SES email monitoring service you self-host.',
logo: 'doublezero.svg',
links: {
github: 'https://github.com/technomancy-dev/00',
website: 'https://www.double-zero.cloud/',
docs: 'https://github.com/technomancy-dev/00',
},
tags: ['email'],
load: () => import('./doublezero/index').then((m) => m.generate),
}
];