Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Real World Demo. necessary for real world production use. custom sign in page, #8

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions LICENSE

This file was deleted.

Binary file added bun.lockb
Binary file not shown.
Binary file added local.db
Binary file not shown.
30 changes: 20 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,30 @@
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
"db:generate": "drizzle-kit generate --config=./src/lib/db/drizzle.config.ts",
"db:push": "drizzle-kit push --config=./src/lib/db/drizzle.config.ts",
"db:studio": "drizzle-kit studio --config=./src/lib/db/drizzle.config.ts",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json"
},
"devDependencies": {
"@sveltejs/adapter-auto": "3.2.0",
"@sveltejs/kit": "2.5.7",
"@sveltejs/vite-plugin-svelte": "^3.1.0",
"svelte": "4.2.19",
"svelte-check": "3.6.9",
"typescript": "5.4.5",
"vite": "5.2.14"
"@sveltejs/adapter-auto": "3.3.1",
"@sveltejs/kit": "2.15.0",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"autoprefixer": "^10.4.20",
"drizzle-kit": "^0.30.1",
"postcss": "^8.4.49",
"postcss-load-config": "^6.0.1",
"svelte": "5.16.0",
"svelte-check": "4.1.1",
"tailwindcss": "^3.4.17",
"typescript": "5.7.2",
"vite": "6.0.6"
},
"dependencies": {
"@auth/sveltekit": "latest"
"@auth/drizzle-adapter": "^1.7.4",
"@auth/sveltekit": "^1.7.4",
"@libsql/client": "^0.14.0",
"drizzle-orm": "^0.38.3"
},
"type": "module"
}
Loading