906b1a502d
- Full-featured blockchain explorer with React frontend + Node.js backend - Features: block/tx/address lookup, live node map, price ticker, rich list - Real-time updates via WebSocket - Comprehensive documentation (README, INSTALL, API, TROUBLESHOOTING) - Docker deployment with docker-compose - Deployed at https://maza.samiahmed7777.me
88 lines
828 B
Plaintext
88 lines
828 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.test
|
|
*.env
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
*.log
|
|
logs/
|
|
|
|
# Docker
|
|
.dockerignore
|
|
|
|
# SSH keys (NEVER commit these!)
|
|
*.key
|
|
*.pem
|
|
*_rsa
|
|
*_rsa.pub
|
|
*_ed25519
|
|
*_ed25519.pub
|
|
id_*
|
|
|
|
# Database
|
|
*.sqlite
|
|
*.db
|
|
data/
|
|
*.sql
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
*.tmp
|
|
|
|
# OS files
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
# Runtime data
|
|
pids/
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage
|
|
coverage/
|
|
.nyc_output/
|
|
|
|
# Test
|
|
test-results/
|
|
playwright-report/
|
|
|
|
# Backend data (rich list cache, etc.)
|
|
backend/data/*.json
|
|
backend/data/*.db
|
|
|
|
# Frontend production build
|
|
frontend/build/
|
|
frontend/dist/
|
|
|
|
# Certificates
|
|
*.crt
|
|
*.pem
|
|
*.cer
|
|
|
|
# Secrets
|
|
secrets/
|
|
*.secret
|