[PR #3630] [CLOSED] feat/qwik-example #4923

Closed
opened 2026-03-13 12:04:21 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/better-auth/better-auth/pull/3630
Author: @frectonz
Created: 7/26/2025
Status: Closed

Base: mainHead: feat/qwik-example


📝 Commits (2)

  • c0e0349 chore(examples): add qwik example
  • 93746d4 chore: update pnpm lock

📊 Changes

21 files changed (+1227 additions, -426 deletions)

View changed files

examples/qwik-example/.gitignore (+42 -0)
examples/qwik-example/README.md (+1 -0)
examples/qwik-example/better-auth_migrations/2025-07-26T09-41-47.582Z.sql (+7 -0)
examples/qwik-example/package.json (+36 -0)
examples/qwik-example/public/favicon.svg (+1 -0)
examples/qwik-example/public/manifest.json (+9 -0)
examples/qwik-example/public/robots.txt (+0 -0)
examples/qwik-example/qwik.env.d.ts (+4 -0)
examples/qwik-example/src/auth-client.ts (+6 -0)
examples/qwik-example/src/auth.ts (+14 -0)
examples/qwik-example/src/components/router-head/router-head.tsx (+48 -0)
examples/qwik-example/src/entry.dev.tsx (+17 -0)
examples/qwik-example/src/entry.preview.tsx (+21 -0)
examples/qwik-example/src/entry.ssr.tsx (+31 -0)
examples/qwik-example/src/global.css (+0 -0)
examples/qwik-example/src/root.tsx (+32 -0)
examples/qwik-example/src/routes/api/auth/[...all]/index.ts (+7 -0)
examples/qwik-example/src/routes/index.tsx (+28 -0)
examples/qwik-example/tsconfig.json (+26 -0)
examples/qwik-example/vite.config.ts (+106 -0)

...and 1 more files

📄 Description

closes #95

Summary by cubic

Added a new Qwik example app that demonstrates integrating Better Auth with GitHub login.

  • New Features
    • Qwik project setup with Better Auth and GitHub OAuth.
    • Example route for signing in with GitHub.
    • Auth API route and database migration scripts included.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/better-auth/better-auth/pull/3630 **Author:** [@frectonz](https://github.com/frectonz) **Created:** 7/26/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feat/qwik-example` --- ### 📝 Commits (2) - [`c0e0349`](https://github.com/better-auth/better-auth/commit/c0e0349df6694fb4c4815039120c701bc611ea95) chore(examples): add qwik example - [`93746d4`](https://github.com/better-auth/better-auth/commit/93746d4eec94d02f777f23a9237203584a61d1e5) chore: update pnpm lock ### 📊 Changes **21 files changed** (+1227 additions, -426 deletions) <details> <summary>View changed files</summary> ➕ `examples/qwik-example/.gitignore` (+42 -0) ➕ `examples/qwik-example/README.md` (+1 -0) ➕ `examples/qwik-example/better-auth_migrations/2025-07-26T09-41-47.582Z.sql` (+7 -0) ➕ `examples/qwik-example/package.json` (+36 -0) ➕ `examples/qwik-example/public/favicon.svg` (+1 -0) ➕ `examples/qwik-example/public/manifest.json` (+9 -0) ➕ `examples/qwik-example/public/robots.txt` (+0 -0) ➕ `examples/qwik-example/qwik.env.d.ts` (+4 -0) ➕ `examples/qwik-example/src/auth-client.ts` (+6 -0) ➕ `examples/qwik-example/src/auth.ts` (+14 -0) ➕ `examples/qwik-example/src/components/router-head/router-head.tsx` (+48 -0) ➕ `examples/qwik-example/src/entry.dev.tsx` (+17 -0) ➕ `examples/qwik-example/src/entry.preview.tsx` (+21 -0) ➕ `examples/qwik-example/src/entry.ssr.tsx` (+31 -0) ➕ `examples/qwik-example/src/global.css` (+0 -0) ➕ `examples/qwik-example/src/root.tsx` (+32 -0) ➕ `examples/qwik-example/src/routes/api/auth/[...all]/index.ts` (+7 -0) ➕ `examples/qwik-example/src/routes/index.tsx` (+28 -0) ➕ `examples/qwik-example/tsconfig.json` (+26 -0) ➕ `examples/qwik-example/vite.config.ts` (+106 -0) _...and 1 more files_ </details> ### 📄 Description closes #95 <!-- This is an auto-generated description by cubic. --> ## Summary by cubic Added a new Qwik example app that demonstrates integrating Better Auth with GitHub login. - **New Features** - Qwik project setup with Better Auth and GitHub OAuth. - Example route for signing in with GitHub. - Auth API route and database migration scripts included. <!-- End of auto-generated description by cubic. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-03-13 12:04:21 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/better-auth#4923