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.
- package/dist/wizard.js +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("");
|