| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- # Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
- # Dependencies
- node_modules/
- # Expo / Metro
- .expo/
- .expo-shared/
- dist/
- build/
- web-build/
- expo-env.d.ts
- .metro-health-check*
- # Native build artifacts
- android/.gradle/
- android/build/
- android/app/build/
- android/local.properties
- ios/Pods/
- ios/build/
- ios/DerivedData/
- ios/xcuserdata/
- .swiftpm/
- # Keys / provisioning
- *.jks
- *.p8
- *.p12
- *.key
- *.pem
- *.mobileprovision
- # Logs
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- pnpm-debug.log*
- bun-debug.log*
- # OS / IDE
- .DS_Store
- .idea/
- .vscode/
- # Env files
- .env
- .env.*
- # TypeScript
- *.tsbuildinfo
- # Misc
- app-example
|