create-luff-app 2.0.0 → 2.0.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 (3) hide show
  1. package/NOTES.md +4 -10
  2. package/README.md +2 -1
  3. package/package.json +1 -1
package/NOTES.md CHANGED
@@ -109,11 +109,9 @@ Handles everything: clears port conflicts, starts Docker DBs, launches all servi
109
109
  ### Option B: Kubernetes Mode (Production)
110
110
 
111
111
  ```mermaid
112
+ %%{init: {'theme':'dark','themeVariables':{'fontSize':'10px'}}}%%
112
113
  flowchart LR
113
- A[Build] --> B[Tag]
114
- B --> C[ArgoCD]
115
- C --> D[Deploy]
116
- D --> E[Forward]
114
+ A[Build] --> B[Tag] --> C[ArgoCD] --> D[Deploy] --> E[Forward]
117
115
  ```
118
116
 
119
117
  ```bash
@@ -169,13 +167,9 @@ kubectl create secret generic ai-secrets \
169
167
  ## 🤖 5. CI/CD Pipeline
170
168
 
171
169
  ```mermaid
170
+ %%{init: {'theme':'dark','themeVariables':{'fontSize':'10px'}}}%%
172
171
  flowchart LR
173
- Push --> CI[Actions]
174
- CI --> Lint
175
- Lint --> Build
176
- Build --> GHCR
177
- GHCR --> Argo[ArgoCD]
178
- Argo --> K8s
172
+ Push --> CI[Actions] --> Lint --> Build --> Reg[GHCR] --> Argo[ArgoCD] --> K8s
179
173
  ```
180
174
 
181
175
  > **⚠️ Important**: Add `GOOGLE_CLIENT_ID` to GitHub Repository Secrets. Next.js `NEXT_PUBLIC_` variables are baked into the Docker image at build time.
package/README.md CHANGED
@@ -7,7 +7,7 @@
7
7
  <img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" />
8
8
  </p>
9
9
 
10
- > **Scaffold the entire LUFF. microservices ecosystem in one command.**
10
+ > **Scaffold the entire LUFF. microservices ecosystem in one command.**
11
11
  > Full-stack Next.js + Express + Prisma + Gemini AI + Razorpay — ready to run.
12
12
 
13
13
  ---
@@ -86,6 +86,7 @@ During scaffolding, the CLI asks:
86
86
  ### AI Architecture
87
87
 
88
88
  ```mermaid
89
+ %%{init: {'theme':'dark','themeVariables':{'fontSize':'10px'}}}%%
89
90
  flowchart LR
90
91
  A[Upload] --> B[Parse]
91
92
  B --> C[Embed]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-luff-app",
3
- "version": "2.0.0",
3
+ "version": "2.0.2",
4
4
  "description": "CLI to scaffold the Luff Microservices Boilerplate",
5
5
  "bin": {
6
6
  "create-luff-app": "bin/cli.js"