63 lines
845 B
Plaintext
63 lines
845 B
Plaintext
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
|
|
|
|
# dependencies
|
|
# node_modules/
|
|
|
|
# Agent ignored files
|
|
temp*.txt
|
|
scratch/
|
|
.venv/
|
|
venv/
|
|
*.tmp
|
|
*.log
|
|
# Expo
|
|
.expo/
|
|
dist/
|
|
web-build/
|
|
|
|
# Native
|
|
.kotlin/
|
|
*.orig.*
|
|
*.jks
|
|
*.keystore
|
|
!schnappix-upload-key.keystore
|
|
*.p8
|
|
*.p12
|
|
*.key
|
|
*.mobileprovision
|
|
|
|
# Metro
|
|
.metro-health-check*
|
|
|
|
# debug
|
|
npm-debug.*
|
|
yarn-debug.*
|
|
yarn-error.*
|
|
|
|
# macOS
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# local env files
|
|
.env*.local
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
|
|
# generated native folders
|
|
/ios
|
|
|
|
# Gradle/Android build folders
|
|
**/build/
|
|
**/.gradle/
|
|
.vscode/
|
|
|
|
# Allow tracking the android folder and the release APK specifically
|
|
!/android/
|
|
!/android/app/build/outputs/apk/release/app-release.apk
|
|
n |