57 lines
494 B
Plaintext
57 lines
494 B
Plaintext
# .dockerignore
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Flutter/Dart
|
|
.dart_tool/
|
|
.packages
|
|
build/
|
|
.flutter-plugins
|
|
.flutter-plugins-dependencies
|
|
.metadata
|
|
|
|
# Node.js (for proxy)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Test
|
|
test/
|
|
integration_test/
|
|
.test_coverage/
|
|
|
|
# Documentation
|
|
*.md
|
|
!README.md
|
|
|
|
# CI/CD
|
|
.github/
|
|
|
|
# Local development
|
|
.env.local
|
|
*.log
|
|
|
|
# macOS
|
|
.DS_Store
|
|
|
|
# Windows
|
|
Thumbs.db
|
|
|
|
# Linux
|
|
*~
|
|
|
|
# Other
|
|
*.iml
|
|
*.class
|
|
*.lock
|
|
!pubspec.lock
|
|
!package-lock.json
|