Skip to content
This repository was archived by the owner on Apr 24, 2024. It is now read-only.

Commit c4c2a1b

Browse files
committed
📝 added info about deployment and changed the discord link
1 parent 52b91b6 commit c4c2a1b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "create-chartbrew-app",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"description": "CLI tool for generating a new ChartBrew app",
55
"main": "index.js",
66
"scripts": {

utils/endInfo.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,13 @@ module.exports = (program, projectName) => {
1414

1515
console.log(chalk.green.bold("Next steps:"));
1616
console.log(" ");
17+
console.log("To run in development: ");
1718
console.log(`${chalk.blue("Run the client app: ")} cd client && npm run start`);
1819
console.log(`${chalk.blue("Run the server app: ")} cd server && npm run start-dev`);
1920
console.log(" ");
2021

21-
console.log(chalk.bold("For more info please visit https://docs.chartbrew.com"));
22+
console.log("To deploy your app in production:");
23+
console.log(`${chalk.blue("Visit the documentation for instructions: ")} https://docs.chartbrew.com/deployment/`);
2224
console.log(" ");
2325

2426
console.log(chalk.green.bold("Thank you for using ChartBrew! Join our communities below to get help and chat with other brewers"));
@@ -29,6 +31,6 @@ module.exports = (program, projectName) => {
2931
console.log(" ");
3032
console.log(chalk.green.bold("Or Discord:"));
3133
console.log(" ");
32-
console.log(chalk.bold("https://discord.gg/Qt6drek"));
34+
console.log(chalk.bold("https://discord.gg/KwGEbFk"));
3335
console.log(" ");
3436
};

0 commit comments

Comments
 (0)