Template
1
0

feat: react zitadel

This commit is contained in:
2025-11-23 22:56:58 +01:00
parent 2b462993cc
commit fe4220ede0
139 changed files with 3389 additions and 2771 deletions

View File

@@ -2,26 +2,26 @@ import { getEnvironmentVariable } from "@platform/config/environment.ts";
import z from "zod";
export const config = {
mongo: {
xtdb: {
host: getEnvironmentVariable({
key: "DB_MONGO_HOST",
key: "DB_XTDB_HOST",
type: z.string(),
fallback: "localhost",
}),
port: getEnvironmentVariable({
key: "DB_MONGO_PORT",
key: "DB_XTDB_PORT",
type: z.coerce.number(),
fallback: "67017",
fallback: "5432",
}),
user: getEnvironmentVariable({
key: "DB_MONGO_USER",
key: "DB_XTDB_USER",
type: z.string(),
fallback: "root",
fallback: "xtdb",
}),
pass: getEnvironmentVariable({
key: "DB_MONGO_PASSWORD",
key: "DB_XTDB_PASSWORD",
type: z.string(),
fallback: "password",
fallback: "xtdb",
}),
},
};