Skip to content

Commit 625378f

Browse files
committed
docs: update README and add comprehensive JWT guide
1 parent e1e520d commit 625378f

File tree

2 files changed

+608
-1
lines changed

2 files changed

+608
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Spring + React JWT Auth Template
22

3-
Minimal full-stack JWT authentication system with access/refresh token strategy.
3+
Production-ready JWT authentication scaffold with refresh token rotation. Clone it, swap in your business logic, and ship.
4+
5+
Use this as a starting point for any full-stack app that needs auth — the boring (and easy to mess up) parts are already done: secure token storage, automatic refresh, route guards, breach detection, and logout.
6+
7+
For a deep dive into how JWT auth works, see [`docs/JWT_GUIDE.md`](docs/JWT_GUIDE.md).
48

59
## Tech Stack
610

@@ -157,5 +161,6 @@ docker compose down -v
157161

158162
## Learning Resources
159163

164+
- [`docs/JWT_GUIDE.md`](docs/JWT_GUIDE.md) — Complete JWT guide: how tokens work, sessions vs JWT, refresh token rotation, breach detection, and security considerations
160165
- [`server/INITIAL_SETUP.md`](server/INITIAL_SETUP.md) — Backend from-scratch guide (Spring Boot, JPA, Security, JWT)
161166
- [`client/INITIAL_SETUP.md`](client/INITIAL_SETUP.md) — Frontend from-scratch guide (Vite, Tailwind, shadcn, React Router)

0 commit comments

Comments
 (0)