- docs/00-15: دراسة، بنية، محرك تعرفة، تسعير، نموذج استئجار، تكاملات، بيانات، realtime، خطة، devops، لاندنج، مخاطر، اصطلاحات سيرفر، تدفق نشر - backend/: NestJS 11 على Docker (health + tenants + عزل tenant_id + بادئة tripz_ + Redis DB 3) - apps/rider, apps/driver, dashboards/admin-web, dashboards/superadmin-web (هياكل) - sync-to-server.sh + .gitignore Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
65 lines
960 B
Plaintext
65 lines
960 B
Plaintext
# ==== Tripz — نصوص فقط، لا ملفات كبيرة ولا أسرار ولا مخرجات بناء ====
|
|
|
|
# ---- Secrets / env ----
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
*.keystore
|
|
*.jks
|
|
**/google-services.json
|
|
**/GoogleService-Info.plist
|
|
|
|
# ---- Node / NestJS ----
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
coverage/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-store/
|
|
|
|
# ---- Flutter / Dart ----
|
|
.dart_tool/
|
|
.packages
|
|
.pub-cache/
|
|
.pub/
|
|
**/build/
|
|
**/.flutter-plugins
|
|
**/.flutter-plugins-dependencies
|
|
**/ios/Pods/
|
|
**/ios/.symlinks/
|
|
**/android/.gradle/
|
|
**/android/app/debug/
|
|
**/android/app/profile/
|
|
**/android/app/release/
|
|
*.iml
|
|
|
|
# ---- Docker / data volumes (تُدار على السيرفر لا في git) ----
|
|
**/pgdata/
|
|
**/redisdata/
|
|
*.dump
|
|
*.sql.gz
|
|
|
|
# ---- OS / IDE ----
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# ---- Big/binary assets (لا تُرفع لـ git — نصوص فقط) ----
|
|
*.zip
|
|
*.tar
|
|
*.tar.gz
|
|
*.mbtiles
|
|
*.pbf
|
|
*.apk
|
|
*.aab
|
|
*.ipa
|
|
*.mp4
|
|
*.mov
|
|
*.psd
|