Commit Graph

11 Commits

Author SHA1 Message Date
Jeremy
4de7ab2a99 Merge pull request #148 from Wikid82/renovate/major-4-tailwindcss-monorepo
chore(deps): update dependency tailwindcss to v4
2025-11-19 23:44:47 -05:00
renovate[bot]
f9b9a7ff64 chore(deps): update dependency tailwindcss to v4 2025-11-20 04:42:22 +00:00
renovate[bot]
113ff3db4d chore(deps): update dependency eslint-plugin-react-hooks to v7 2025-11-20 04:42:14 +00:00
renovate[bot]
942fa9b196 chore(deps): update dependency vite to v7 2025-11-20 03:16:00 +00:00
Jeremy
9b8915353c Merge pull request #128 from Wikid82/renovate/major-6-react-monorepo
chore(deps): update dependency eslint-plugin-react-hooks to v6
2025-11-19 21:53:00 -05:00
renovate[bot]
35c6d16f80 chore(deps): update dependency eslint-plugin-react-hooks to v6 2025-11-20 02:48:29 +00:00
renovate[bot]
9a0796109c chore(deps): update dependency @vitejs/plugin-react to v5 2025-11-20 02:48:22 +00:00
Wikid82
945b18ab3e feat: Implement User Authentication and Fix Frontend Startup
- Implemented Issue #9: User Authentication & Authorization
  - Added User model fields (FailedLoginAttempts, LockedUntil, LastLogin)
  - Created AuthService with JWT support, bcrypt hashing, and account lockout
  - Added AuthMiddleware and AuthHandler
  - Registered auth routes in backend
  - Created AuthContext and RequireAuth component in frontend
  - Implemented Login page and integrated with backend
- Fixed 'Blank Page' issue in local Docker environment
  - Added QueryClientProvider to main.tsx
  - Installed missing lucide-react dependency
  - Fixed TypeScript linting errors in SetupGuard.tsx
- Updated docker-entrypoint.sh to use 127.0.0.1 for reliable Caddy checks
- Verified with local Docker build
2025-11-19 19:44:22 -05:00
Wikid82
9f74367ae6 fix(frontend): fix linting configuration and dependencies 2025-11-19 10:28:57 -05:00
Wikid82
76f937d947 fix: add missing frontend dependencies and remove trailing whitespace
- Add @tanstack/react-query, axios, and clsx to frontend dependencies
- Remove trailing whitespace from multiple files to pass pre-commit hooks
- These were required but missing from package.json
2025-11-19 09:48:37 -05:00
Wikid82
e58fcb714d docs: comprehensive documentation polish & CI/CD automation
Major Updates:
- Rewrote all docs in beginner-friendly 'ELI5' language
- Created docs index with user journey navigation
- Added complete getting-started guide for novice users
- Set up GitHub Container Registry (GHCR) automation
- Configured GitHub Pages deployment for documentation

Documentation:
- docs/index.md - Central navigation hub
- docs/getting-started.md - Step-by-step beginner guide
- docs/github-setup.md - CI/CD setup instructions
- README.md - Complete rewrite in accessible language
- CONTRIBUTING.md - Contributor guidelines
- Multiple comprehensive API and schema docs

CI/CD Workflows:
- .github/workflows/docker-build.yml - Multi-platform builds to GHCR
- .github/workflows/docs.yml - Automated docs deployment to Pages
- Supports main (latest), development (dev), and version tags
- Automated testing of built images
- Beautiful documentation site with dark theme

Benefits:
- Zero barrier to entry for new users
- Automated Docker builds (AMD64 + ARM64)
- Professional documentation site
- No Docker Hub account needed (uses GHCR)
- Complete CI/CD pipeline

All 7 implementation phases complete - project is production ready!
2025-11-18 13:11:11 -05:00