-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
107 lines (95 loc) · 2.7 KB
/
.gitignore
File metadata and controls
107 lines (95 loc) · 2.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# ==============================================================================
# Stemly .gitignore
# ==============================================================================
# ------------------------------------------------------------------------------
# Environment & Secrets
# ------------------------------------------------------------------------------
.env
*.env
.env.*
!.env.example
*serviceAccountKey*.json
*service-account*.json
*firebase-adminsdk*.json
backend/firebase_service_account.json
# ------------------------------------------------------------------------------
# Python
# ------------------------------------------------------------------------------
__pycache__/
*.py[cod]
*$py.class
*.so
.venv/
venv/
env/
backend/.venv/
# Pytest / Coverage
.pytest_cache/
htmlcov/
.coverage
coverage.xml
*.cover
# mypy
.mypy_cache/
# Distribution
*.egg-info/
dist/
build/
# ------------------------------------------------------------------------------
# Flutter / Dart
# ------------------------------------------------------------------------------
stemly_app/build/
stemly_app/.dart_tool/
stemly_app/.flutter-plugins
stemly_app/.flutter-plugins-dependencies
stemly_app/.packages
# Platform-specific generated files
stemly_app/android/.gradle/
stemly_app/android/build/
stemly_app/android/app/google-services.json
stemly_app/ios/Pods/
stemly_app/ios/Runner/GoogleService-Info.plist
stemly_app/ios/.symlinks/
stemly_app/macos/Pods/
stemly_app/macos/Flutter/ephemeral/
stemly_app/linux/flutter/ephemeral/
stemly_app/windows/flutter/ephemeral/
stemly_app/.firebase/
# Flutter test coverage
stemly_app/coverage/
# ------------------------------------------------------------------------------
# IDE / Editor
# ------------------------------------------------------------------------------
.vscode/
!.vscode/settings.json
!.vscode/launch.json
.idea/
*.iml
*.swp
*.swo
*~
*.backup
# ------------------------------------------------------------------------------
# OS files
# ------------------------------------------------------------------------------
.DS_Store
.DS_Store?
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# ------------------------------------------------------------------------------
# Docker
# ------------------------------------------------------------------------------
docker-compose.override.yml
# ------------------------------------------------------------------------------
# Misc
# ------------------------------------------------------------------------------
.history/
static/scans/
backend/static/scans/
*.log
.secrets.baseline
backend/services/flutter_application_1/
test_output.txt
test_image.png