- Created auth and user types (T10) - Implemented API client with token handling (T11) - Built AuthContext with JWT decoding (T12) - Added ProtectedRoute component (T13) - Created LoginPage, RegisterPage, DashboardPage (T14-T16) - Updated App.tsx with routing and auth provider (T17) - Added Dockerfile, nginx.conf for frontend deployment (T18-T19) - Updated docker-compose.yml to include frontend service (T20) - Updated .gitignore to exclude frontend build artifacts (T21) - Removed unused App.css (T22) Refs #2
30 lines
261 B
Plaintext
30 lines
261 B
Plaintext
## .NET
|
|
**/bin/
|
|
**/obj/
|
|
**/out/
|
|
|
|
## NuGet
|
|
**/packages/
|
|
*.nuget.props
|
|
*.nuget.targets
|
|
|
|
## IDE
|
|
.vs/
|
|
.vscode/
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.sln.docstates
|
|
|
|
## OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
## Frontend
|
|
node_modules/
|
|
dist/
|
|
.env.local
|
|
|
|
## Docker
|
|
docker-compose.override.yml
|