Fixe .gitignore pour exclure .build-home/ et .pub-cache-local/ des environnements locaux de build (bruit non versionne). Documente le checklist d'integration serveur et met a jour le README en consequence. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
113 lines
1.8 KiB
Plaintext
113 lines
1.8 KiB
Plaintext
# Miscellaneous
|
|
*.class
|
|
*.log
|
|
*.pyc
|
|
*.swp
|
|
.DS_Store
|
|
.atom/
|
|
.buildlog/
|
|
.history
|
|
.svn/
|
|
migrate_working_dir/
|
|
|
|
# IntelliJ related
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
|
|
# Visual Studio Code related
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Flutter/Dart/Pub related
|
|
**/doc/api/
|
|
.dart_tool/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
.pub-cache/
|
|
.pub/
|
|
/build/
|
|
**/build/
|
|
|
|
# Symbolication related
|
|
app.*.symbols
|
|
|
|
# Obfuscation related
|
|
app.*.map.json
|
|
|
|
# Android Studio will place build artifacts here
|
|
/android/app/debug
|
|
/android/app/profile
|
|
/android/app/release
|
|
android/.gradle/
|
|
android/local.properties
|
|
android/**/gradle-wrapper.jar
|
|
android/key.properties
|
|
*.jks
|
|
*.keystore
|
|
|
|
# iOS/Xcode related
|
|
ios/Pods/
|
|
ios/.symlinks/
|
|
ios/Flutter/Flutter.framework
|
|
ios/Flutter/Flutter.podspec
|
|
ios/Flutter/App.framework
|
|
ios/Flutter/Generated.xcconfig
|
|
ios/Flutter/ephemeral/
|
|
ios/Flutter/app.flx
|
|
ios/Flutter/app.zip
|
|
ios/Flutter/flutter_assets/
|
|
ios/Flutter/flutter_export_environment.sh
|
|
ios/ServiceDefinitions.json
|
|
ios/Runner/GeneratedPluginRegistrant.*
|
|
**/xcuserdata/
|
|
**/*.pbxuser
|
|
**/*.mode1v3
|
|
**/*.mode2v3
|
|
**/*.perspectivev3
|
|
*.moved-aside
|
|
DerivedData/
|
|
*.hmap
|
|
*.ipa
|
|
*.dSYM.zip
|
|
*.dSYM
|
|
|
|
# Coverage
|
|
coverage/
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IdeA orchestration — état d'exécution transitoire (pas du code applicatif)
|
|
.ideai/run/
|
|
.ideai/conversations/
|
|
.ideai/requests/
|
|
.ideai/background-tasks/
|
|
.ideai/live-state.json
|
|
.ideai/layouts.json
|
|
.ideai/permissions.json
|
|
.ideai/system-permissions.json
|
|
.ideai/build-env/
|
|
|
|
# Environnements locaux de build (SDK/Gradle/XDG/pub-cache par worktree) — jamais du code applicatif
|
|
.android-local/
|
|
.android-oldflow/
|
|
.gradle-local/
|
|
.gradle-oldflow/
|
|
.home-oldflow/
|
|
.home/
|
|
.pub-cache-oldflow/
|
|
.qa-gradle-watch/
|
|
.qa-home-watch/
|
|
.xdg-oldflow/
|
|
.xdg/
|
|
.tmp/
|
|
.build-home/
|
|
.pub-cache-local/
|
|
|
|
# Fichiers de heap dump parasites (JVM/Android crash)
|
|
*.hprof
|