-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
61 lines (53 loc) · 891 Bytes
/
.gitignore
File metadata and controls
61 lines (53 loc) · 891 Bytes
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
# Root level gitignore for Raseed project
# Environment files and credentials
.env
.env.*
*.json
credentials.json
raseed-*.json
token.json
# Backend specific
Backend/__pycache__/
Backend/*.py[cod]
Backend/*$py.class
Backend/venv/
Backend/env/
Backend/.Python
Backend/build/
Backend/dist/
Backend/*.egg-info/
Backend/.installed.cfg
Backend/*.egg
Backend/logs/
Backend/*.log
# Frontend specific
frontend/.dart_tool/
frontend/.packages
frontend/.pub-cache/
frontend/.pub/
frontend/build/
frontend/.flutter-plugins
frontend/.flutter-plugins-dependencies
frontend/pubspec.lock
# Platform specific builds
frontend/android/app/build/
frontend/ios/build/
frontend/linux/build/
frontend/macos/build/
frontend/windows/build/
frontend/web/build/
# IDE files
.vscode/
.idea/
*.swp
*.swo
*~
# OS files
.DS_Store
Thumbs.db
# Temporary files
*.tmp
*.temp
*.log
# Node modules (if any)
node_modules/