mitbringsl/.gitignore
Tronax 85c790ed23
Build: make Android build work behind restrictive proxies
- settings.gradle.kts: comment out the foojay-resolver-convention plugin.
  It tries to auto-download JDK toolchains from api.foojay.io, which fails
  with 503 behind restrictive proxies. Re-enable at home if you want
  auto-provisioning.
- app/build.gradle.kts: comment out jvmToolchain(17) for the same reason
  (triggers toolchain resolution -> foojay download). The build JDK 21
  plus compileOptions(source/target 17) achieves the same result locally.
- gradle-wrapper.properties: bump to gradle-9.6.1-all (matches the
  manually provided distribution).
- .gitignore: ignore .ssl-work/ (local corporate-CA truststore).
2026-08-06 11:43:03 +02:00

61 lines
852 B
Text

# === Secrets / local env ===
.env
.env.*
!.env.example
deploy/.env
*.pem
*.key
# === Go ===
backend/bin/
/backend/server
/backend/migrate
*.exe
*.exe~
*.dll
*.so
*.dylib
*.test
*.out
/backend/coverage/
# === sqlc generated (keep if committed; uncomment to ignore) ===
# backend/internal/store/sqlc/
# === IDE / OS ===
.idea/
.vscode/
*.iml
.DS_Store
Thumbs.db
# === Agent / tooling local data ===
.zcode/
backend/.testbin/
.ssl-work/
# === Windows system files ===
desktop.ini
Thumbs.db
# === Docker ===
deploy/data/
# === Android / Gradle ===
android/.gradle/
android/build/
android/app/build/
android/local.properties
android/captures/
android/.cxx/
*.apk
*.aab
*.ap_
*.dex
*.keystore
*.jks
keystore.properties
# === Gradle wrapper (KEEP gradlew + wrapper jar; ignore caches) ===
android/**/build/
!android/gradle/wrapper/gradle-wrapper.jar