Files
k8s-game-2048/package.json
Greg 82fc2a6691 feat: Complete PII cleanup and fully automatic pipeline
🧹 PII Cleanup & Security:
- Remove all hardcoded domains (darknex.us, hndrx.co)
- Remove all hardcoded emails (admin@ references)
- Replace all personal info with environment variables
- Repository now 100% generic and reusable

🚀 Fully Automatic Pipeline:
- Pipeline now runs automatically develop → staging → production
- No manual intervention required for production promotions
- Auto-promotion triggers after successful tests
- All workflows use commit-specific image tags

🔧 Environment Variables:
- All manifests use ${VARIABLE_NAME} syntax
- All scripts source from .env file
- GitHub Actions use secrets for sensitive data
- Complete .env.example template provided

📚 Documentation:
- New comprehensive WORKFLOWS.md with pipeline details
- New PIPELINE_QUICK_REFERENCE.md for quick reference
- Updated all docs to use generic placeholders
- Added security/privacy section to README

🔐 Security Enhancements:
- Updated .gitignore for all sensitive files
- Created PII verification script (verify-pii-removal.sh)
- Created cleanup automation script (cleanup-pii.sh)
- Repository verified PII-free and production-ready

BREAKING: Repository now requires .env configuration
- Copy .env.example to .env and configure for your environment
- Set GitHub repository secrets for CI/CD workflows
- All deployments now use environment-specific configuration
2025-07-01 17:30:26 -07:00

37 lines
1009 B
JSON

{
"name": "k8s-game-2048",
"version": "1.0.0",
"description": "2048 game deployed on Kubernetes using Knative Serving with Kourier",
"main": "src/index.html",
"scripts": {
"start": "python3 -m http.server 8080 --directory src",
"build": "docker build -t k8s-game-2048 .",
"deploy:dev": "./scripts/deploy.sh dev",
"deploy:staging": "./scripts/deploy.sh staging",
"deploy:prod": "./scripts/deploy.sh prod",
"setup:knative": "./scripts/setup-knative.sh",
"setup:kourier": "./scripts/setup-kourier.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/${GITHUB_REPOSITORY}.git"
},
"keywords": [
"2048",
"game",
"kubernetes",
"knative",
"kourier",
"serverless",
"scale-to-zero"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/ghndrx/k8s-game-2048/issues"
},
"homepage": "https://github.com/ghndrx/k8s-game-2048#readme",
"devDependencies": {},
"dependencies": {}
}