@webmaster-droid/cli 0.3.0 → 0.4.0

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/dist/index.js +6 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -146,12 +146,17 @@ program.command("init").description("Initialize webmaster-droid environment temp
146
146
  "NEXT_PUBLIC_AGENT_API_BASE_URL=http://localhost:8787",
147
147
  "",
148
148
  "# Supabase (default backend)",
149
+ "# Supabase Edge blocks user-defined secrets with SUPABASE_ prefix.",
150
+ "# Use CMS_* overrides for custom secrets and leave built-in SUPABASE_* values as provided by Supabase.",
149
151
  "NEXT_PUBLIC_SUPABASE_URL=",
150
152
  "NEXT_PUBLIC_SUPABASE_ANON_KEY=",
151
153
  "SUPABASE_URL=",
152
154
  "SUPABASE_ANON_KEY=",
153
155
  "SUPABASE_SERVICE_ROLE_KEY=",
154
- "SUPABASE_JWKS_URL=",
156
+ "CMS_SUPABASE_URL=",
157
+ "CMS_SUPABASE_JWKS_URL=",
158
+ "CMS_SUPABASE_AUTH_KEY=",
159
+ "CMS_SUPABASE_JWT_SECRET=",
155
160
  "CMS_SUPABASE_BUCKET=webmaster-droid-cms",
156
161
  "CMS_STORAGE_PREFIX=cms",
157
162
  "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webmaster-droid/cli",
3
- "version": "0.3.0",
3
+ "version": "0.4.0",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "webmaster-droid": "dist/index.js"