Clean up type errors and get docker build into better state

This commit is contained in:
Mike Conrad
2025-05-19 13:48:47 -04:00
parent 7fa503897c
commit 7ffe4d2825
6 changed files with 14 additions and 9 deletions

View File

@ -27,5 +27,10 @@ export default await Env.create(new URL('../', import.meta.url), {
REDIS_HOST: Env.schema.string({ format: 'host' }),
REDIS_PORT: Env.schema.number(),
REDIS_PASSWORD: Env.schema.string.optional()
REDIS_PASSWORD: Env.schema.string.optional(),
PG_PORT: Env.schema.number(),
PG_HOST: Env.schema.string(),
PG_USER: Env.schema.string(),
PG_PASSWORD: Env.schema.string(),
})