├── .env.sample ├── .eslintrc.js ├── .gitignore ├── .map.ts ├── .npmrc ├── .nvmrc ├── .prettierrc ├── LICENSE ├── README.md ├── components.json ├── drizzle.config.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── favicon.ico ├── robots.txt └── sitemap.xml ├── src ├── app-config.ts ├── app │ ├── (auth) │ │ ├── reset-password │ │ │ ├── actions.ts │ │ │ └── page.tsx │ │ ├── sign-in │ │ │ ├── actions.ts │ │ │ ├── email │ │ │ │ ├── actions.ts │ │ │ │ └── page.tsx │ │ │ ├── forgot-password │ │ │ │ ├── actions.ts │ │ │ │ └── page.tsx │ │ │ ├── magic-link-form.tsx │ │ │ ├── magic │ │ │ │ ├── error │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ └── sign-up │ │ │ ├── actions.ts │ │ │ └── page.tsx │ ├── _header │ │ ├── header.tsx │ │ ├── menu-button.tsx │ │ └── mode-toggle.tsx │ ├── api │ │ ├── login │ │ │ ├── github │ │ │ │ ├── callback │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ ├── google │ │ │ │ ├── callback │ │ │ │ │ └── route.ts │ │ │ │ └── route.ts │ │ │ ├── magic │ │ │ │ └── route.ts │ │ │ └── verify-email │ │ │ │ └── route.ts │ │ └── sign-out │ │ │ └── route.ts │ ├── dashboard │ │ └── page.tsx │ ├── error.tsx │ ├── globals.css │ ├── layout.tsx │ ├── maintenance.tsx │ ├── not-found.tsx │ ├── page.tsx │ ├── providers.tsx │ ├── signed-out │ │ └── page.tsx │ ├── theme-provider.tsx │ └── verify-success │ │ └── page.tsx ├── components │ ├── loader-button.tsx │ └── ui │ │ ├── alert.tsx │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── dropdown-menu.tsx │ │ ├── form.tsx │ │ ├── input.tsx │ │ ├── label.tsx │ │ ├── toast.tsx │ │ ├── toaster.tsx │ │ └── use-toast.ts ├── data-access │ ├── accounts.ts │ ├── magic-links.ts │ ├── profiles.ts │ ├── reset-tokens.ts │ ├── sessions.ts │ ├── users.ts │ ├── utils.ts │ └── verify-email.ts ├── db │ ├── index.ts │ ├── migrate.ts │ └── schema.ts ├── emails │ ├── magic-link.tsx │ ├── reset-password.tsx │ └── verify-email.tsx ├── env.ts ├── lib │ ├── auth.ts │ ├── email.tsx │ ├── errors.ts │ ├── get-ip.ts │ ├── limiter.ts │ ├── names.ts │ ├── safe-action.ts │ ├── session.ts │ └── utils.ts ├── styles │ ├── common.tsx │ └── icons.tsx ├── types │ └── index.ts └── use-cases │ ├── accounts.ts │ ├── errors.ts │ ├── magic-link.tsx │ ├── types.ts │ └── users.tsx ├── tailwind.config.ts └── tsconfig.json /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/.map.ts -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/README.md -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/components.json -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /src/app-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app-config.ts -------------------------------------------------------------------------------- /src/app/(auth)/reset-password/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/reset-password/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/reset-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/reset-password/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/email/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/email/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/email/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/email/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/forgot-password/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/forgot-password/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/forgot-password/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/magic-link-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/magic-link-form.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/magic/error/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/magic/error/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/magic/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/magic/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-in/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-in/page.tsx -------------------------------------------------------------------------------- /src/app/(auth)/sign-up/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-up/actions.ts -------------------------------------------------------------------------------- /src/app/(auth)/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/(auth)/sign-up/page.tsx -------------------------------------------------------------------------------- /src/app/_header/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/_header/header.tsx -------------------------------------------------------------------------------- /src/app/_header/menu-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/_header/menu-button.tsx -------------------------------------------------------------------------------- /src/app/_header/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/_header/mode-toggle.tsx -------------------------------------------------------------------------------- /src/app/api/login/github/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/api/login/github/callback/route.ts -------------------------------------------------------------------------------- /src/app/api/login/github/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/api/login/github/route.ts -------------------------------------------------------------------------------- /src/app/api/login/google/callback/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/api/login/google/callback/route.ts -------------------------------------------------------------------------------- /src/app/api/login/google/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/api/login/google/route.ts -------------------------------------------------------------------------------- /src/app/api/login/magic/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/api/login/magic/route.ts -------------------------------------------------------------------------------- /src/app/api/login/verify-email/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/api/login/verify-email/route.ts -------------------------------------------------------------------------------- /src/app/api/sign-out/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/api/sign-out/route.ts -------------------------------------------------------------------------------- /src/app/dashboard/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/dashboard/page.tsx -------------------------------------------------------------------------------- /src/app/error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/error.tsx -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/layout.tsx -------------------------------------------------------------------------------- /src/app/maintenance.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/maintenance.tsx -------------------------------------------------------------------------------- /src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/not-found.tsx -------------------------------------------------------------------------------- /src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/page.tsx -------------------------------------------------------------------------------- /src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/providers.tsx -------------------------------------------------------------------------------- /src/app/signed-out/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/signed-out/page.tsx -------------------------------------------------------------------------------- /src/app/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/theme-provider.tsx -------------------------------------------------------------------------------- /src/app/verify-success/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/app/verify-success/page.tsx -------------------------------------------------------------------------------- /src/components/loader-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/loader-button.tsx -------------------------------------------------------------------------------- /src/components/ui/alert.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/alert.tsx -------------------------------------------------------------------------------- /src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/button.tsx -------------------------------------------------------------------------------- /src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/form.tsx -------------------------------------------------------------------------------- /src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/input.tsx -------------------------------------------------------------------------------- /src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/label.tsx -------------------------------------------------------------------------------- /src/components/ui/toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/toast.tsx -------------------------------------------------------------------------------- /src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /src/components/ui/use-toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/components/ui/use-toast.ts -------------------------------------------------------------------------------- /src/data-access/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/accounts.ts -------------------------------------------------------------------------------- /src/data-access/magic-links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/magic-links.ts -------------------------------------------------------------------------------- /src/data-access/profiles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/profiles.ts -------------------------------------------------------------------------------- /src/data-access/reset-tokens.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/reset-tokens.ts -------------------------------------------------------------------------------- /src/data-access/sessions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/sessions.ts -------------------------------------------------------------------------------- /src/data-access/users.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/users.ts -------------------------------------------------------------------------------- /src/data-access/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/utils.ts -------------------------------------------------------------------------------- /src/data-access/verify-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/data-access/verify-email.ts -------------------------------------------------------------------------------- /src/db/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/db/index.ts -------------------------------------------------------------------------------- /src/db/migrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/db/migrate.ts -------------------------------------------------------------------------------- /src/db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/db/schema.ts -------------------------------------------------------------------------------- /src/emails/magic-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/emails/magic-link.tsx -------------------------------------------------------------------------------- /src/emails/reset-password.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/emails/reset-password.tsx -------------------------------------------------------------------------------- /src/emails/verify-email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/emails/verify-email.tsx -------------------------------------------------------------------------------- /src/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/env.ts -------------------------------------------------------------------------------- /src/lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/auth.ts -------------------------------------------------------------------------------- /src/lib/email.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/email.tsx -------------------------------------------------------------------------------- /src/lib/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/errors.ts -------------------------------------------------------------------------------- /src/lib/get-ip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/get-ip.ts -------------------------------------------------------------------------------- /src/lib/limiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/limiter.ts -------------------------------------------------------------------------------- /src/lib/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/names.ts -------------------------------------------------------------------------------- /src/lib/safe-action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/safe-action.ts -------------------------------------------------------------------------------- /src/lib/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/session.ts -------------------------------------------------------------------------------- /src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/lib/utils.ts -------------------------------------------------------------------------------- /src/styles/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/styles/common.tsx -------------------------------------------------------------------------------- /src/styles/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/styles/icons.tsx -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- 1 | export type UserId = number; 2 | -------------------------------------------------------------------------------- /src/use-cases/accounts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/use-cases/accounts.ts -------------------------------------------------------------------------------- /src/use-cases/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/use-cases/errors.ts -------------------------------------------------------------------------------- /src/use-cases/magic-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/use-cases/magic-link.tsx -------------------------------------------------------------------------------- /src/use-cases/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/use-cases/types.ts -------------------------------------------------------------------------------- /src/use-cases/users.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/src/use-cases/users.tsx -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webdevcody/next-drizzle-lucia-sqlite-template/HEAD/tsconfig.json --------------------------------------------------------------------------------