190 lines
3.1 KiB
Plaintext
190 lines
3.1 KiB
Plaintext
# ============================================
|
|
# Environment & Secrets
|
|
# ============================================
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# ============================================
|
|
# Python
|
|
# ============================================
|
|
__pycache__/
|
|
*.py[codz]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
*.egg
|
|
MANIFEST
|
|
.tox/
|
|
.nox/
|
|
.coverage
|
|
.coverage.*
|
|
.pytest_cache/
|
|
htmlcov/
|
|
.env
|
|
.envrc
|
|
.venv
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
.pyre/
|
|
.pytype/
|
|
*.log
|
|
db.sqlite3
|
|
|
|
# ============================================
|
|
# Flutter
|
|
# ============================================
|
|
/bin/cache/
|
|
/bin/internal/
|
|
/dev/benchmarks/
|
|
/dev/bots/
|
|
/dev/docs/
|
|
/dev/integration_tests/**/xcuserdata
|
|
/dev/integration_tests/**/Pods
|
|
/packages/flutter/coverage/
|
|
version
|
|
analysis_benchmark.json
|
|
.packages.generated
|
|
**/doc/api/
|
|
.dart_tool/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
**/generated_plugin_registrant.dart
|
|
.packages
|
|
.pub-preload-cache/
|
|
.pub/
|
|
build/
|
|
flutter_*.png
|
|
|
|
# Android
|
|
**/android/**/gradle-wrapper.jar
|
|
.gradle/
|
|
**/android/captures/
|
|
**/android/gradlew
|
|
**/android/gradlew.bat
|
|
**/android/local.properties
|
|
**/android/**/GeneratedPluginRegistrant.java
|
|
**/android/key.properties
|
|
*.jks
|
|
|
|
# iOS/XCode
|
|
**/ios/**/*.mode1v3
|
|
**/ios/**/*.mode2v3
|
|
**/ios/**/*.moved-aside
|
|
**/ios/**/*.pbxuser
|
|
**/ios/**/*.perspectivev3
|
|
**/ios/**/*sync/
|
|
**/ios/**/.sconsign.dblite
|
|
**/ios/**/.tags*
|
|
**/ios/**/.vagrant/
|
|
**/ios/**/DerivedData/
|
|
**/ios/**/Icon?
|
|
**/ios/**/Pods/
|
|
**/ios/**/.symlinks/
|
|
**/ios/**/profile
|
|
**/ios/**/xcuserdata
|
|
**/ios/.generated/
|
|
**/ios/Flutter/.last_build_id
|
|
**/ios/Flutter/App.framework
|
|
**/ios/Flutter/Flutter.framework
|
|
**/ios/Flutter/Flutter.podspec
|
|
**/ios/Flutter/Generated.xcconfig
|
|
**/ios/Flutter/ephemeral
|
|
**/ios/Flutter/app.flx
|
|
**/ios/Flutter/app.zip
|
|
**/ios/Flutter/flutter_assets/
|
|
**/ios/ServiceDefinitions.json
|
|
**/ios/Runner/GeneratedPluginRegistrant.*
|
|
|
|
# macOS
|
|
**/Flutter/ephemeral/
|
|
**/Pods/
|
|
**/macos/Flutter/GeneratedPluginRegistrant.swift
|
|
**/macos/Flutter/ephemeral
|
|
**/xcuserdata/
|
|
|
|
# Coverage
|
|
coverage/
|
|
|
|
# ============================================
|
|
# Kotlin / Gradle / Android
|
|
# ============================================
|
|
*.class
|
|
*.log
|
|
*.lock
|
|
.buildlog/
|
|
.history
|
|
build/
|
|
app/build/
|
|
login-service/build/
|
|
.gradle/
|
|
.idea/
|
|
!.idea/codeStyles/
|
|
*.iml
|
|
out/
|
|
*.apk
|
|
*.aab
|
|
*.dex
|
|
|
|
# ============================================
|
|
# Node.js
|
|
# ============================================
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# ============================================
|
|
# Java / Spring Boot
|
|
# ============================================
|
|
target/
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
hs_err_pid*
|
|
spring-boot-*.jar
|
|
|
|
# ============================================
|
|
# IDE
|
|
# ============================================
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
*.sublime-*
|
|
.idea/
|
|
*.iml
|
|
atlassian-ide-plugin.xml
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
|
|
# ============================================
|
|
# Misc
|
|
# ============================================
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
*.rdb
|
|
*.aof
|
|
*.pid
|
|
|
|
# ============================================
|
|
# Local folders
|
|
# ============================================
|
|
old/
|