Keine Beschreibung

.gitignore 651B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
  2. # Dependencies
  3. node_modules/
  4. # Expo / Metro
  5. .expo/
  6. .expo-shared/
  7. dist/
  8. build/
  9. web-build/
  10. expo-env.d.ts
  11. .metro-health-check*
  12. # Native build artifacts
  13. android/.gradle/
  14. android/build/
  15. android/app/build/
  16. android/local.properties
  17. ios/Pods/
  18. ios/build/
  19. ios/DerivedData/
  20. ios/xcuserdata/
  21. .swiftpm/
  22. # Keys / provisioning
  23. *.jks
  24. *.p8
  25. *.p12
  26. *.key
  27. *.pem
  28. *.mobileprovision
  29. # Logs
  30. npm-debug.log*
  31. yarn-debug.log*
  32. yarn-error.log*
  33. pnpm-debug.log*
  34. bun-debug.log*
  35. # OS / IDE
  36. .DS_Store
  37. .idea/
  38. .vscode/
  39. # Env files
  40. .env
  41. .env.*
  42. # TypeScript
  43. *.tsbuildinfo
  44. # Misc
  45. app-example