Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Update text outputs #11

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions src/create-grandstack-app.js
Original file line number Diff line number Diff line change
Expand Up @@ -276,9 +276,10 @@ const main = async () => {
}
console.log();
console.log(
`Thanks for using GRANDstack! We've created your app in '${newAppDir}'`
`Thanks for using GRANDstack! We've created your business reviews dashboard app in '${newAppDir}'.
Please adapt the GraphQL schema and the UI components for your own use-cases.`
);
console.log(`You can find documentation at: https://grandstack.io/docs`);
console.log(`You can find documentation in the readme and at: https://grandstack.io/docs`);
console.log();
console.log(`To start your GRANDstack web application and GraphQL API run:

Expand All @@ -289,6 +290,10 @@ Then (optionally) to seed the database with sample data, in the api/ directory i

npm run seedDb

To infer an initial GraphQL schema for your existing graph data, you can run

npm run inferschema:write

`);
})
.catch((e) => {
Expand Down