-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
168 lines (146 loc) · 2.73 KB
/
.gitignore
File metadata and controls
168 lines (146 loc) · 2.73 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# Voice Banking Project Root .gitignore
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
venv/
env/
ENV/
env.bak/
venv.bak/
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
*.log
logs/
# Environment variables
.env
.env.local
.env.production
.env.development
# API keys and secrets
**/config/secrets.py
**/config/api_keys.py
**/secrets.json
**/credentials.json
# Database
*.db
*.sqlite
*.sqlite3
# Temporary files
temp/
tmp/
*.tmp
# Build artifacts
build/
dist/
*.egg-info/
# Flutter mobile app
mobile_app/build/
mobile_app/.dart_tool/
mobile_app/.packages
mobile_app/.pub-cache/
mobile_app/.pub/
mobile_app/ios/Pods/
mobile_app/ios/.symlinks/
mobile_app/ios/Flutter/App.framework
mobile_app/ios/Flutter/Flutter.framework
mobile_app/ios/Flutter/Flutter.podspec
mobile_app/ios/Flutter/Generated.xcconfig
mobile_app/ios/Flutter/ephemeral/
mobile_app/ios/Flutter/app.flx
mobile_app/ios/Flutter/app.zip
mobile_app/ios/Flutter/flutter_assets/
mobile_app/ios/Flutter/flutter_export_environment.sh
mobile_app/ios/ServiceDefinitions.json
mobile_app/ios/Runner/GeneratedPluginRegistrant.*
mobile_app/android/app/debug
mobile_app/android/app/profile
mobile_app/android/app/release
mobile_app/android/.gradle
mobile_app/android/captures
mobile_app/android/gradlew
mobile_app/android/gradlew.bat
mobile_app/android/local.properties
mobile_app/android/**/GeneratedPluginRegistrant.java
mobile_app/android/key.properties
mobile_app/android/app/upload-keystore.jks
mobile_app/android/app/voice-banking-keystore.jks
# STT Service
stt_service/__pycache__/
stt_service/*.pyc
stt_service/venv/
stt_service/env/
stt_service/.env
stt_service/logs/
stt_service/temp/
stt_service/*.log
# Documentation
doc/
docs/
*.md.bak
# Backup files
*.bak
*.backup
*.old
# Test coverage
coverage/
.coverage
htmlcov/
# Jupyter Notebook
.ipynb_checkpoints
# pytest
.pytest_cache/
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# iOS Build Artifacts - Large files that shouldn't be committed
mobile_app/ios/Runner.xcarchive/
mobile_app/ios/build/
mobile_app/ios/*.xcarchive/
mobile_app/ios/*.ipa
mobile_app/ios/ExportOptions.plist
mobile_app/ios/DistributionSummary.plist
mobile_app/ios/Packaging.log
# iOS dSYM files (debug symbols) - often very large
mobile_app/ios/**/*.dSYM/
mobile_app/ios/**/Flutter.framework.dSYM/
mobile_app/ios/**/Runner.app.dSYM/
# Xcode build artifacts
mobile_app/ios/DerivedData/
mobile_app/ios/.build/
mobile_app/ios/*.xcodeproj/xcuserdata/
mobile_app/ios/*.xcworkspace/xcuserdata/
# iOS Simulator builds
mobile_app/ios/ios/
mobile_app/ios/Flutter/ios_framework/