Template
1
0

feat: initial boilerplate

This commit is contained in:
2025-08-11 20:45:41 +02:00
parent d98524254f
commit 1215a98afc
148 changed files with 6935 additions and 2060 deletions

9
api/config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { config as auth } from "~libraries/auth/config.ts";
import { getEnvironmentVariable, toNumber } from "~libraries/config/mod.ts";
export const config = {
name: "valkyr",
host: getEnvironmentVariable("API_HOST", "0.0.0.0"),
port: getEnvironmentVariable("API_PORT", toNumber, "8370"),
...auth,
};