chore: format whole repository with new configs

This commit is contained in:
Krzysztof Durek
2024-07-15 01:08:18 +02:00
parent 7a5c71cda3
commit 906e8de13b
349 changed files with 3565 additions and 3549 deletions

View File

@@ -1,9 +1,9 @@
import {
generateHash,
generateRandomDomain,
type Template,
type Schema,
type Template,
generateHash,
generatePassword,
generateRandomDomain,
} from "../utils";
export function generate(schema: Schema): Template {
@@ -19,7 +19,7 @@ export function generate(schema: Schema): Template {
"# check config.toml in Advanced / Volumes for more options",
];
const mounts: Template["mounts"] = [
const mounts: Template["mounts"] = [
{
mountPath: "./config.toml",
content: `[app]
@@ -47,6 +47,6 @@ params = ""
return {
envs,
mounts,
mounts,
};
}