Initial commit
This commit is contained in:
108
.gitignore
vendored
108
.gitignore
vendored
@@ -1,43 +1,97 @@
|
||||
# Learn more https://docs.github.com/en/get-started/getting-started-with-git/ignoring-files
|
||||
|
||||
# dependencies
|
||||
# ---------------------------
|
||||
# Node / Expo / React Native
|
||||
# ---------------------------
|
||||
node_modules/
|
||||
|
||||
# Expo
|
||||
.expo/
|
||||
dist/
|
||||
web-build/
|
||||
expo-env.d.ts
|
||||
|
||||
# Native
|
||||
.kotlin/
|
||||
*.orig.*
|
||||
*.jks
|
||||
*.p8
|
||||
*.p12
|
||||
*.key
|
||||
*.mobileprovision
|
||||
|
||||
# Metro
|
||||
.metro-health-check*
|
||||
*.tsbuildinfo
|
||||
|
||||
# debug
|
||||
# Local env files
|
||||
.env*.local
|
||||
.env
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.*
|
||||
yarn-debug.*
|
||||
yarn-error.*
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
|
||||
# ---------------------------
|
||||
# Android / React Native native
|
||||
# Keep /android and /ios ONLY if you commit native code
|
||||
# Remove these two lines if you want generated native folders ignored
|
||||
# ---------------------------
|
||||
.gradle/
|
||||
build/
|
||||
local.properties
|
||||
captures/
|
||||
.externalNativeBuild/
|
||||
.cxx/
|
||||
*.aab
|
||||
*.apk
|
||||
output-metadata.json
|
||||
*.hprof
|
||||
.kotlin/
|
||||
|
||||
# ---------------------------
|
||||
# IntelliJ / Android Studio / VS Code
|
||||
# ---------------------------
|
||||
*.iml
|
||||
.idea/
|
||||
.vscode/
|
||||
misc.xml
|
||||
deploymentTargetDropDown.xml
|
||||
render.experimental.xml
|
||||
|
||||
# ---------------------------
|
||||
# Secrets / signing / platform keys
|
||||
# ---------------------------
|
||||
*.jks
|
||||
*.keystore
|
||||
*.p8
|
||||
*.p12
|
||||
*.key
|
||||
*.pem
|
||||
*.mobileprovision
|
||||
google-services.json
|
||||
|
||||
# local env files
|
||||
.env*.local
|
||||
|
||||
# typescript
|
||||
*.tsbuildinfo
|
||||
|
||||
app-example
|
||||
|
||||
# generated native folders
|
||||
/ios
|
||||
# ---------------------------
|
||||
# iOS / Android generated native folders
|
||||
# Ignore these only for Expo managed/prebuild workflow
|
||||
# Comment them out if you keep native code in repo
|
||||
# ---------------------------
|
||||
/android
|
||||
/ios
|
||||
|
||||
# ---------------------------
|
||||
# .NET / ASP.NET Core Web API
|
||||
# ---------------------------
|
||||
**/bin/
|
||||
**/obj/
|
||||
**/.vs/
|
||||
*.user
|
||||
*.rsuser
|
||||
*.suo
|
||||
|
||||
# App settings / local secrets
|
||||
**/appsettings.Development.json
|
||||
**/secrets.json
|
||||
|
||||
# EF Core / local DB artifacts
|
||||
*.db
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
# ---------------------------
|
||||
# Misc
|
||||
# ---------------------------
|
||||
*.orig.*
|
||||
app-example
|
||||
Reference in New Issue
Block a user