first commit

This commit is contained in:
2026-08-08 11:08:00 -05:00
commit c51740c589
32 changed files with 2461 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { FileHelper, z } from '@start9labs/start-sdk'
import { sdk } from '../sdk'
const shape = z
.object({
databaseRootPassword: z.string().catch(''),
databasePassword: z.string().catch(''),
authSecret: z.string().catch(''),
igdbClientId: z.string().catch(''),
igdbClientSecret: z.string().catch(''),
mobygamesApiKey: z.string().catch(''),
steamGridDbApiKey: z.string().catch(''),
})
.strip()
export const storeJson = FileHelper.json(
{ base: sdk.volumes.main, subpath: './store.json' },
shape,
)