create-vellaveto 4.0.6 → 4.0.7

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/wizard.js +2 -2
  2. package/package.json +1 -1
package/dist/wizard.js CHANGED
@@ -172,7 +172,7 @@ function nextSteps(state, absDir) {
172
172
  case "binary":
173
173
  lines.push(` cd ${absDir}`);
174
174
  lines.push(" bash setup.sh");
175
- lines.push(` VELLAVETO_API_KEY='${state.apiKey}' ./bin/vellaveto serve --config vellaveto.toml`);
175
+ lines.push(` VELLAVETO_API_KEY='${state.apiKey}' ./bin/vellaveto serve --config vellaveto.toml --open`);
176
176
  break;
177
177
  case "kubernetes":
178
178
  lines.push(` kubectl create secret generic vellaveto-api-key \\`);
@@ -186,7 +186,7 @@ function nextSteps(state, absDir) {
186
186
  lines.push(" cd vellaveto-src");
187
187
  lines.push(" cargo build --release");
188
188
  lines.push(` VELLAVETO_API_KEY='${state.apiKey}' \\`);
189
- lines.push(` ./target/release/vellaveto serve --config ${absDir}/vellaveto.toml`);
189
+ lines.push(` ./target/release/vellaveto serve --config ${absDir}/vellaveto.toml --open`);
190
190
  break;
191
191
  }
192
192
  lines.push("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-vellaveto",
3
- "version": "4.0.6",
3
+ "version": "4.0.7",
4
4
  "description": "Setup wizard for Vellaveto — MCP Tool Firewall",
5
5
  "type": "module",
6
6
  "bin": {