-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
97 lines (91 loc) · 1.61 KB
/
.gitignore
File metadata and controls
97 lines (91 loc) · 1.61 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
# OS / Editor
.DS_Store
Thumbs.db
*.swp
*.swo
*.tmp
.atom/
.history
.svn/
.swiftpm/
.vscode/*
!.vscode/tasks.json
.idea/
*.iml
*.ipr
*.iws
.github/copilot-instructions.md
docs/superpowers/
# Logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Env / Secrets
.env
.env.*
!.env.example
# Generic build outputs
build/
dist/
coverage/
migrate_working_dir/
# Monorepo: Frontend (Flutter)
frontend/.dart_tool/
frontend/.flutter-plugins
frontend/.flutter-plugins-dependencies
frontend/.packages
frontend/.pub/
frontend/.pub-cache/
frontend/build/
frontend/coverage/
frontend/**/doc/api/
frontend/**/ios/Flutter/.last_build_id
frontend/**/Flutter/ephemeral/
frontend/**/Flutter/Generated.xcconfig
frontend/**/Flutter/flutter_export_environment.sh
frontend/**/.symlinks/
frontend/**/Pods/
frontend/**/generated_plugin_registrant.dart
frontend/android/app/debug/
frontend/android/app/profile/
frontend/android/app/release/
frontend/app.*.symbols
frontend/app.*.map.json
# Monorepo: Backend (Python)
.venv/
backend/.venv/
backend/venv/
backend/*.db
backend/*.db-shm
backend/*.db-wal
backend/*.sqlite
backend/*.sqlite3
backend/**/__pycache__/
backend/**/*.py[cod]
backend/.pytest_cache/
backend/.mypy_cache/
backend/.ruff_cache/
backend/.hypothesis/
backend/.tox/
backend/.nox/
backend/.cache/
backend/.coverage
backend/.coverage.*
backend/htmlcov/
backend/build/
backend/dist/
backend/*.egg-info/
backend/.python-version
# Monorepo: Backend (Node/TypeScript)
backend/node_modules/
backend/.npm/
backend/.pnpm-store/
backend/.yarn/
backend/.next/
backend/.nuxt/
backend/.svelte-kit/
backend/.turbo/
backend/*.tsbuildinfo
.aider*