Update server setup logic and add admin user creation in setup page

This commit is contained in:
Sean Morley
2024-04-18 23:00:35 +00:00
parent 7fe90f615f
commit f626370d3f
9 changed files with 235 additions and 2 deletions

1
src/app.d.ts vendored
View File

@@ -3,6 +3,7 @@ declare global {
interface Locals {
user: import("lucia").User | null;
session: import("lucia").Session | null;
isServerSetup: boolean;
}
}
}