chore: add .gitignore and clean up repository
- 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
This commit is contained in:
+46
@@ -0,0 +1,46 @@
|
||||
# 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-*/
|
||||
Reference in New Issue
Block a user