-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
87 lines (74 loc) · 2.11 KB
/
Copy path.gitignore
File metadata and controls
87 lines (74 loc) · 2.11 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
# ── Python / Backend ──────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
.venv/
venv/
env/
ENV/
pip-wheel-metadata/
*.log
# SQLite database
*.db
*.sqlite
*.sqlite3
# dotenv / secrets
.env
.env.*
!.env.example
# ── Flutter / Dart ────────────────────────────────────────────────────────────
# Build outputs
flutter_app/build/
flutter_app/.dart_tool/
flutter_app/.flutter-plugins
flutter_app/.flutter-plugins-dependencies
flutter_app/.packages
# Pub cache / lock (keep pubspec.lock for reproducible builds — remove line below to ignore it)
# flutter_app/pubspec.lock
# Generated files
flutter_app/**/*.g.dart
flutter_app/**/*.freezed.dart
# Android
flutter_app/android/.gradle/
flutter_app/android/local.properties
flutter_app/android/key.properties
flutter_app/android/*.jks
flutter_app/android/*.keystore
flutter_app/android/app/google-services.json
flutter_app/android/app/debug/
flutter_app/android/app/release/
flutter_app/android/app/profile/
flutter_app/android/captures/
# iOS
flutter_app/ios/Pods/
flutter_app/ios/.symlinks/
flutter_app/ios/Flutter/Flutter.framework
flutter_app/ios/Flutter/Flutter.podspec
flutter_app/ios/GoogleService-Info.plist
# macOS
flutter_app/macos/Pods/
flutter_app/macos/Flutter/ephemeral/
# Windows
flutter_app/windows/flutter/ephemeral/
# Linux
flutter_app/linux/flutter/ephemeral/
# Web
flutter_app/web/
# ── IDEs ──────────────────────────────────────────────────────────────────────
.idea/
.vscode/
*.iml
*.ipr
*.iws
.DS_Store
Thumbs.db
# ── Uploaded files (local server storage) ─────────────────────────────────────
backend/public/
backend/uploads/