deploy-stack 0.2.1 β†’ 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +8 -5
  2. package/package.json +22 -1
package/README.md CHANGED
@@ -4,6 +4,8 @@
4
4
 
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
6
6
 
7
+ ![deploy-stack CLI demonstration](./docs/demo.gif)
8
+
7
9
  ---
8
10
 
9
11
  ## The Problem
@@ -118,11 +120,12 @@ npx deploy-stack --no-telemetry
118
120
 
119
121
  ## πŸ—ΊοΈ Roadmap
120
122
 
121
- - [x] **POC:** Interactive CLI, ECS Fargate + ALB Terraform generation, GitHub Actions CI/CD, and Secrets sync.
122
- - [x] **MVP:** CloudFront distribution, Remote S3 State locking, OIDC security, and CLI configuration flows.
123
- - [ ] **v0.9:** Zero-config framework detection (auto-discovering Next.js, Express, and FastAPI via `package.json` / `requirements.txt`).
124
- - [ ] **v1.0 (Pro):** Automated RDS PostgreSQL provisioning, custom domain Route 53 / ACM SSL configuration, and environment workspaces (`staging` vs `prod`).
125
- - [ ] **v2.0 (Enterprise):** Private VPC subnets with NAT gateways, AWS WAF integration, and automated compliance scanning.
123
+ - [x] **Core MVP:** Interactive CLI, ECS Fargate + ALB Terraform generation, CI/CD, and Secrets sync.
124
+ - [x] **Production Readiness:** CloudFront distribution, S3 State locking, and OIDC security.
125
+ - [x] **Smart Experience:** Zero-config framework auto-discovery for Next.js, Express, and FastAPI.
126
+ - [ ] **State & Storage:** Automated RDS PostgreSQL provisioning and persistent volumes.
127
+ - [ ] **Advanced Networking:** Custom domains (Route 53), ACM SSL configuration, and environment workspaces (staging/prod).
128
+ - [ ] **Security Hardening:** Private VPC subnets with NAT gateways, and AWS WAF integration.
126
129
 
127
130
  ---
128
131
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "deploy-stack",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Provision production-ready AWS infrastructure and CI/CD pipelines in seconds.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -14,6 +14,27 @@
14
14
  "type": "git",
15
15
  "url": "git+https://github.com/anton-codes-iac/deploy-stack.git"
16
16
  },
17
+ "homepage": "https://github.com/anton-codes-iac/deploy-stack#readme",
18
+ "bugs": {
19
+ "url": "https://github.com/anton-codes-iac/deploy-stack/issues"
20
+ },
21
+ "keywords": [
22
+ "aws",
23
+ "terraform",
24
+ "github-actions",
25
+ "ci-cd",
26
+ "ecs",
27
+ "fargate",
28
+ "nextjs-deployment",
29
+ "infrastructure-as-code",
30
+ "oidc",
31
+ "deploy-stack",
32
+ "expressjs",
33
+ "fastapi",
34
+ "nextjs",
35
+ "static-site",
36
+ "nginx"
37
+ ],
17
38
  "license": "MIT",
18
39
  "dependencies": {
19
40
  "@aws-sdk/client-s3": "3.1115.0",