- Root package.json with npm run dev (concurrently API + Vite) - Add node_modules/, frontend/dist/ to .gitignore - Whitelist package.json and package-lock.json
23 lines
310 B
Plaintext
23 lines
310 B
Plaintext
# Python virtual environments
|
|
venv/
|
|
.venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Generated wallet JSON files
|
|
*.json
|
|
!package.json
|
|
!package-lock.json
|
|
!frontend/package.json
|
|
!frontend/package-lock.json
|
|
|
|
# Frontend build output and dependencies
|
|
node_modules/
|
|
frontend/node_modules/
|
|
frontend/dist/
|