style: run code formatting on two files

This commit is contained in:
Freilyn Bernabe
2024-08-22 16:08:48 -04:00
parent 137edf1250
commit 1e6e85ed5b
2 changed files with 21 additions and 24 deletions

View File

@@ -18,10 +18,7 @@ export function generate(schema: Schema): Template {
}, },
]; ];
const envs = [ const envs = [`APTABASE_HOST=${mainDomain}`, `AUTH_SECRET=${authSecret}`];
`APTABASE_HOST=${mainDomain}`,
`AUTH_SECRET=${authSecret}`
];
return { return {
envs, envs,

View File

@@ -427,7 +427,8 @@ export const templates: TemplateData[] = [
id: "aptabase", id: "aptabase",
name: "Aptabase", name: "Aptabase",
version: "v1.0.0", version: "v1.0.0",
description: "Aptabase is a self-hosted web analytics platform that lets you track website traffic and user behavior.", description:
"Aptabase is a self-hosted web analytics platform that lets you track website traffic and user behavior.",
logo: "aptabase.svg", logo: "aptabase.svg",
links: { links: {
github: "https://github.com/aptabase/aptabase", github: "https://github.com/aptabase/aptabase",
@@ -437,5 +438,4 @@ export const templates: TemplateData[] = [
tags: ["analytics", "self-hosted"], tags: ["analytics", "self-hosted"],
load: () => import("./aptabase/index").then((m) => m.generate), load: () => import("./aptabase/index").then((m) => m.generate),
}, },
]; ];