- Add GPS module with Traccar client service for device management - Add driver enrollment flow with QR code generation - Add real-time location tracking on driver profiles - Add GPS settings configuration in admin tools - Add Auth0 OpenID Connect setup script for Traccar - Add deployment configs for production server - Update nginx configs for SSL on GPS port 5055 - Add timezone setting support - Various UI improvements and bug fixes Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
73 lines
711 B
Plaintext
73 lines
711 B
Plaintext
# Dependencies
|
|
node_modules
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build output
|
|
dist
|
|
build
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
!.env.production
|
|
!.env.example
|
|
|
|
# Testing
|
|
e2e
|
|
playwright-report
|
|
test-results
|
|
coverage
|
|
*.spec.ts
|
|
*.spec.tsx
|
|
*.test.ts
|
|
*.test.tsx
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
docs
|
|
|
|
# IDE and editor files
|
|
.vscode
|
|
.idea
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Temporary files
|
|
tmp
|
|
temp
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Docker files (avoid recursion)
|
|
Dockerfile*
|
|
.dockerignore
|
|
docker-compose*.yml
|
|
|
|
# CI/CD
|
|
.github
|
|
.gitlab-ci.yml
|
|
|
|
# Development files
|
|
public/mockServiceWorker.js
|
|
|
|
# Misc
|
|
.editorconfig
|
|
.eslintrc*
|
|
.prettierrc*
|
|
playwright.config.ts
|