51dab31263
- Added comprehensive .gitignore for node_modules, dist, env files - Removed node_modules from git history (keep locally) - Removed empty/placeholder files (EOF, PLANEOF, create-staging.py) - Repository now clean for public sharing
47 lines
392 B
Plaintext
47 lines
392 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Build & dist
|
|
dist/
|
|
build/
|
|
*.bundle.js
|
|
*.bundle.css
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
.env.production.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# OS
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Test coverage
|
|
.coverage/
|
|
coverage/
|
|
|
|
# Python
|
|
*.pyc
|
|
__pycache__/
|
|
*.py~
|
|
|
|
# Staging
|
|
/tmp/
|
|
/staging-*/
|