feat: initial prototype works

I can log in and create a book! Woo!
This commit is contained in:
2026-02-04 12:17:05 -08:00
parent e167a17bd9
commit b6d66d34cb
44 changed files with 3695 additions and 493 deletions
+1 -1
View File
@@ -22,6 +22,6 @@ export async function app(fastify: FastifyInstance, opts: AppOptions) {
// define your routes in one of these
fastify.register(AutoLoad, {
dir: path.join(__dirname, 'routes'),
options: { ...opts },
options: { ...opts, prefix: '/api' },
});
}