Skip to content

Commit 23fd1ad

Browse files
committed
chore(repo): update frontend wave, spec v7, cursor rules, and env configuration
1 parent 0060b34 commit 23fd1ad

90 files changed

Lines changed: 3262 additions & 15688 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 239 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,239 @@
1-
node_modules
1+
# =============================================
2+
# Python
3+
# =============================================
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
*.so
9+
10+
# Virtual environments
11+
*.venv/
12+
venv/
13+
.venv/
14+
15+
# pip/poetry lock files (commit the template, not the lock)
16+
# pip freeze output (local dev artifact)
17+
requirements.txt
18+
19+
# PyInstaller
20+
*.manifest
21+
*.spec
22+
23+
# Installer logs
24+
pip-log.txt
25+
pip-delete-this-directory.txt
26+
27+
# Unit test / coverage reports
28+
htmlcov/
29+
.tox/
30+
.nox/
31+
.coverage
32+
.coverage.*
33+
.cache
34+
nosetests.xml
35+
coverage.xml
36+
*.cover
37+
*.py,cover
38+
.hypothesis/
39+
.pytest_cache/
40+
pytest_cache/
41+
42+
# Translations
43+
*.mo
44+
*.pot
45+
46+
# Environments
47+
.env
48+
.env.local
49+
.env.*.local
50+
*.log
51+
local_settings.py
52+
db.json
53+
54+
# Flask stuff
55+
instance/
56+
.webassets-cache
57+
58+
# Scrapy
59+
.scrapy
60+
61+
# Django stuff:
62+
*.log
63+
local_settings.py
64+
db.sqlite3
65+
db.sqlite3-journal
66+
67+
# FastAPI / uvicorn
68+
*.pid
69+
70+
# Jupyter Notebook
71+
.ipynb_checkpoints
72+
73+
# IPython
74+
profile_default/
75+
ipython_config.py
76+
77+
# pyenv
78+
.python-version
79+
80+
# PEP 582
81+
__pypackages__/
82+
83+
# Celery
84+
celerybeat-schedule
85+
celerybeat.pid
86+
87+
# SageMath parsed files
88+
*.sage.py
89+
90+
# Environments (Django/ninja)
91+
.env
92+
.venv
93+
env/
94+
venv/
95+
ENV/
96+
env.bak/
97+
venv.bak/
98+
99+
# Spyder project settings
100+
.spyderproject
101+
.spyproject
102+
103+
# Rope project settings
104+
.ropeproject
105+
106+
# mkdocs
107+
/site
108+
109+
# mypy
110+
.mypy_cache/
111+
.dmypy.json
112+
dmypy.json
113+
114+
# Pyre type checker
115+
.pyre/
116+
117+
# =============================================
118+
# Node.js / npm
119+
# =============================================
120+
# Dependencies
121+
node_modules/
122+
jspm_packages/
123+
124+
# Build outputs
125+
.next/
126+
out/
127+
build/
128+
dist/
129+
*.tgz
130+
131+
# Generated files
132+
*.log
133+
npm-debug.log*
134+
yarn-debug.log*
135+
yarn-error.log*
136+
lerna-debug.log*
137+
.pnpm-debug.log*
138+
139+
# Diagnostic reports
140+
*.tsbuildinfo
141+
142+
# Optional npm cache directory
143+
.npm
144+
145+
# Optional eslint cache
146+
.eslintcache
147+
148+
# Optional stylelint cache
149+
.stylelintcache
150+
151+
# Microbundle
152+
*.tsbuildinfo
153+
154+
# =============================================
155+
# Services / ML Models
156+
# =============================================
157+
# ML model weights - use Git LFS for large models
158+
*.pt
159+
*.pth
160+
*.onnx
161+
*.h5
162+
*.pb
163+
*.tflite
164+
*.mlmodel
165+
*.pkl
166+
*.pickle
167+
!services/alpr/yolov8n.pt
168+
169+
# Dataset cache
170+
*.cache
171+
172+
# Model checkpoints
173+
checkpoints/
174+
*.ckpt
175+
176+
# =============================================
177+
# IDE / OS
178+
# =============================================
179+
# IDE
180+
.idea/
181+
.idea_modules/
182+
*.iml
183+
.vscode/
184+
!.vscode/settings.json
185+
!.vscode/tasks.json
186+
!.vscode/launch.json
187+
!.vscode/extensions.json
188+
*.swp
189+
*.swo
190+
*~
191+
.DS_Store
192+
193+
# Project specific
194+
cursor.env
195+
.cursor/
196+
197+
# Temporary files
198+
*.tmp
199+
*.temp
200+
*.bak
201+
*.orig
202+
*___jb_tmp___*
203+
204+
# OS
205+
Thumbs.db
206+
Thumbs.db:encryptable
207+
ehthumbs.db
208+
ehthumbs_vista.db
209+
*.lnk
210+
211+
# =============================================
212+
# Docker / Dev
213+
# =============================================
214+
.dockerignore
215+
216+
# Docker volumes
217+
*.vol
218+
219+
# Local development
220+
*.local
221+
.local/
222+
223+
# =============================================
224+
# Backup & Evidence artifacts
225+
# =============================================
226+
apps/api/.backups/
227+
apps/api/.runtime/
228+
release-evidence/*/artifacts/
229+
*.backup
230+
*.sql.bak
231+
232+
# Media / Uploads
233+
media/
234+
uploads/
235+
*.media
236+
237+
# Observability (runtime)
238+
*.prom
239+
*.metrics

apps/api/.backups/demo-backup-20260313T173424Z/mysql/parking_mgmt.sql

Lines changed: 0 additions & 1999 deletions
This file was deleted.

apps/api/.backups/demo-backup-20260313T181029Z/README.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

apps/api/.backups/demo-backup-20260313T181029Z/manifest.json

Lines changed: 0 additions & 53 deletions
This file was deleted.

0 commit comments

Comments
 (0)