@embeddable.com/init 0.1.4 → 0.1.5
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/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -141,7 +141,7 @@ Failed to download boilerplate: ${message}
|
|
|
141
141
|
{
|
|
142
142
|
type: "password",
|
|
143
143
|
name: "apiKey",
|
|
144
|
-
message: `You'll need an API Key to push this code bundle to your workspace
|
|
144
|
+
message: `You'll need an API Key to push this code bundle to your account's workspace
|
|
145
145
|
(to create an account, head to ${chalk.cyan("https://embeddable.com/start")}).
|
|
146
146
|
|
|
147
147
|
Paste your API Key here:`,
|
|
@@ -165,7 +165,7 @@ Paste your API Key here:`,
|
|
|
165
165
|
{
|
|
166
166
|
type: "select",
|
|
167
167
|
name: "region",
|
|
168
|
-
message: "Confirm your workspace region:",
|
|
168
|
+
message: "Confirm your workspace region (you can find this in your workspace):",
|
|
169
169
|
choices: [
|
|
170
170
|
{ title: "US", value: "US" },
|
|
171
171
|
{ title: "EU", value: "EU" }
|
|
@@ -233,12 +233,12 @@ Paste your API Key here:`,
|
|
|
233
233
|
console.log(chalk.green(`
|
|
234
234
|
Success!
|
|
235
235
|
`));
|
|
236
|
-
console.log(`You have pushed
|
|
236
|
+
console.log(`You have pushed Embeddable's ${chalk.bold("default chart library")} and sample ${chalk.bold("data models")} to your workspace.`);
|
|
237
237
|
console.log(`Refresh your workspace page to see the "Create new Embeddable" button and the sample dashboards: ${chalk.cyan(workspaceLink)}
|
|
238
238
|
`);
|
|
239
239
|
console.log(`Follow the guide here to create your first Embeddable dashboard: ${chalk.cyan(docsLink)}
|
|
240
240
|
`);
|
|
241
|
-
await open(
|
|
241
|
+
await open("https://docs.embeddable.com/getting-started/set-up-your-workspace#refresh-your-workspace");
|
|
242
242
|
}
|
|
243
243
|
main().catch((error) => {
|
|
244
244
|
console.error(chalk.red("An unexpected error occurred:"), error);
|