-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.gitignore
More file actions
83 lines (71 loc) · 1.28 KB
/
Copy path.gitignore
File metadata and controls
83 lines (71 loc) · 1.28 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
# ===================== Python =====================
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg-info/
*.egg
dist/
build/
.eggs/
*.whl
# Virtual environments
backend/venv/
backend/.venv/
venv/
.venv/
# ===================== Node.js =====================
node_modules/
frontend/node_modules/
frontend/dist/
frontend/dist-ssr/
*.local
npm-debug.log*
yarn-debug.log*
pnpm-debug.log*
# ===================== Database =====================
*.db
*.sqlite
*.sqlite3
backend/exam_architect.db
backend/gate_db.sqlite
exam_architect.db
# ===================== Secrets & Env =====================
.env
backend/.env
!backend/.env.example
# ===================== IDE / Editor =====================
.vscode/
!.vscode/extensions.json
.idea/
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
*.swp
*.swo
*~
# ===================== OS =====================
.DS_Store
Thumbs.db
desktop.ini
# ===================== Logs =====================
logs/
*.log
# ===================== Intermediate Data =====================
backend/data/staged/
backend/data/temp_pages/
frontend/dist/
# ===================== Misc =====================
*.local
*.bak
*.tmp
# Scratch / debug scripts at root
check_*.py
test_parse.py
questions_*_dump.txt
parsed_*_questions.txt
# Local design files & plans
EXAM_ARCHITECT_GUIDE.md
implementation_plan.md