You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `build` command generates registry-compatible JSON files under:
52
+
53
+
```text
54
+
public/r/
55
+
registry.json
56
+
drizzle-postgres.json
57
+
api-keys.json
58
+
stripe-billing.json
59
+
```
60
+
61
+
This mirrors the source-registry pattern: the registry item JSON embeds file contents while module metadata stays in `registry/modules/<module>/module.json`.
"content": "import \"server-only\";\n\nimport Stripe from \"stripe\";\n\nexport function getStripe() {\n const secretKey = process.env.STRIPE_SECRET_KEY;\n if (!secretKey) {\n throw new Error(\"STRIPE_SECRET_KEY is not set.\");\n }\n\n return new Stripe(secretKey);\n}\n"
0 commit comments