1
0

chore: scaffold node/ts/vitest project with health endpoint

This commit is contained in:
2026-08-29 14:43:44 +02:00
parent 52b2cbd6c5
commit 01ad6fbb40
12 changed files with 3020 additions and 0 deletions

7
server/src/config.ts Normal file
View File

@@ -0,0 +1,7 @@
export interface Config {
dataDir: string
artworkDir: string
dbPath: string
port: number
sessionSecret: string
}