mirror of
https://github.com/ghndrx/k8s-game-2048.git
synced 2026-02-10 14:54:59 +00:00
Initial commit: 2048 game with Knative and Kourier deployment
- Complete 2048 game implementation with responsive design - Knative Serving manifests for dev/staging/prod environments - Scale-to-zero configuration with environment-specific settings - Custom domain mapping for wa.darknex.us subdomains - GitHub Actions workflows for CI/CD - Docker container with nginx and health checks - Setup scripts for Knative and Kourier installation - GHCR integration for container registry
This commit is contained in:
36
package.json
Normal file
36
package.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"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/ghndrx/k8s-game-2048.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": {}
|
||||
}
|
||||
Reference in New Issue
Block a user