fixed route handling. added lucid with sqlite support

This commit is contained in:
Sockenklaus
2023-07-03 07:04:25 +02:00
parent bf92a1ed9a
commit f58c0c3245
16 changed files with 2340 additions and 100 deletions

1
env.ts
View File

@@ -23,4 +23,5 @@ export default Env.rules({
SESSION_DRIVER: Env.schema.string(),
DRIVE_DISK: Env.schema.enum(['local'] as const),
NODE_ENV: Env.schema.enum(['development', 'production', 'test'] as const),
DB_CONNECTION: Env.schema.string(),
})