-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
81 lines (67 loc) · 1.45 KB
/
Copy path.gitignore
File metadata and controls
81 lines (67 loc) · 1.45 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
# Python
venv/
.venv/
**/.venv/
**/node_modules/
__pycache__/
**/__pycache__/
*.py[cod]
*.egg-info/
build/
.pytest_cache/
.mypy_cache/
# Node
frontend/node_modules/
frontend/dist/
# Env & secrets
.env
.env.*
!.env.example
!.env.local.example
# SQLite للتطوير المحلي (scripts/run_dev_local.sh)
backend/data/*.sqlite
backend/data/*.db
# IDE
.idea/
.vscode/
*.swp
# Android SDK (محلي عند تشغيل install_android_sdk.sh داخل المشروع)
.android-sdk-farm/
# Cursor / local AI
.claude/
# أرشيفات ضخمة في جذر المستودع (ضع SAMFW تحت firmware/ فقط إن رغبت، ولا ترفع ZIP للـ Git)
/*.zip
SAMFW*.zip
# نسخ قديمة/مكررة بجانب backend/ — الشفرة المرجعية تحت backend/ + frontend/
/api/
/core/
/adb/
/qemu/
/instances/
/logs/
/profiles/
/main.py
/config.yaml
/requirements.txt
# مجلد dist في الجذر (حزم محلية)
/dist/
# حزم ومستخرجات ضخمة تحت firmware/ — يبقى README و .gitkeep فقط
firmware/*
!firmware/README.md
!firmware/.gitkeep
firmware/*.zip
firmware/*.ZIP
# Uploads / runtime (محتوى محلي فقط)
uploads/
*.log
# حزمة إصدار محلية (يُنشأها scripts/package_release.sh)
dist/*.tar.gz
# أصول الدفع: README + أسماء QR الموثقة فقط
assets/*
!assets/README.md
!assets/usdt-bsc-qr.jpeg
!assets/btc-bsc-qr.jpeg
!assets/usdt-bsc-qr.png
!assets/btc-bsc-qr.png
# OS
.DS_Store