├── .eslintrc.json ├── .gitignore ├── README.md ├── actions ├── todoActions.ts └── userActions.ts ├── app ├── api │ └── webhooks │ │ └── clerk │ │ └── route.ts ├── favicon.ico ├── globals.css ├── layout.tsx ├── page.tsx ├── sign-in │ └── [[...sign-in]] │ │ └── page.tsx └── sign-up │ └── [[...sign-up]] │ └── page.tsx ├── components ├── AddTodo.tsx ├── Navbar.tsx ├── Todo.tsx └── Todos.tsx ├── db ├── drizzle.ts └── schema.ts ├── drizzle.config.ts ├── drizzle ├── 0000_tearful_phalanx.sql └── meta │ ├── 0000_snapshot.json │ └── _journal.json ├── middleware.ts ├── next.config.mjs ├── package.json ├── postcss.config.mjs ├── public ├── next.svg └── vercel.svg ├── tailwind.config.ts ├── tsconfig.json └── types └── todoType.ts /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/README.md -------------------------------------------------------------------------------- /actions/todoActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/actions/todoActions.ts -------------------------------------------------------------------------------- /actions/userActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/actions/userActions.ts -------------------------------------------------------------------------------- /app/api/webhooks/clerk/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/app/api/webhooks/clerk/route.ts -------------------------------------------------------------------------------- /app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/app/favicon.ico -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/sign-in/[[...sign-in]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/app/sign-in/[[...sign-in]]/page.tsx -------------------------------------------------------------------------------- /app/sign-up/[[...sign-up]]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/app/sign-up/[[...sign-up]]/page.tsx -------------------------------------------------------------------------------- /components/AddTodo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/components/AddTodo.tsx -------------------------------------------------------------------------------- /components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/components/Navbar.tsx -------------------------------------------------------------------------------- /components/Todo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/components/Todo.tsx -------------------------------------------------------------------------------- /components/Todos.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/components/Todos.tsx -------------------------------------------------------------------------------- /db/drizzle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/db/drizzle.ts -------------------------------------------------------------------------------- /db/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/db/schema.ts -------------------------------------------------------------------------------- /drizzle.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/drizzle.config.ts -------------------------------------------------------------------------------- /drizzle/0000_tearful_phalanx.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/drizzle/0000_tearful_phalanx.sql -------------------------------------------------------------------------------- /drizzle/meta/0000_snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/drizzle/meta/0000_snapshot.json -------------------------------------------------------------------------------- /drizzle/meta/_journal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/drizzle/meta/_journal.json -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/todoType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umairjameel321/drizzle-next14-neon-clerk/HEAD/types/todoType.ts --------------------------------------------------------------------------------