- Add hooks (useAuth, useSubscription, useNotifications) for real API data - Add auth service (login/signup) with password hashing and session support - Replace stub auth with real tRPC calls in login/signup/onboarding pages - Replace mock dashboard data with real API data from hooks - Create service pages: DarkWatch, VoicePrint, SpamShield, HomeTitle, RemoveBrokers, Settings - Update Navbar, TopBar, Sidebar with real user data and correct routes - Add passwordHash field to users schema for credential auth - Fix tests to work with real hooks (mock tRPC/hooks)
12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import { createMiddleware } from "@solidjs/start/middleware";
|
|
import { clerkMiddleware } from "clerk-solidjs/start/server";
|
|
|
|
export default createMiddleware({
|
|
onRequest: [
|
|
clerkMiddleware({
|
|
publishableKey: process.env.VITE_CLERK_PUBLISHABLE_KEY,
|
|
secretKey: process.env.CLERK_SECRET_KEY,
|
|
}),
|
|
],
|
|
});
|