diff --git a/advanced/README.md b/advanced/README.md index 6950568d6..376d448be 100644 --- a/advanced/README.md +++ b/advanced/README.md @@ -28,18 +28,22 @@ npm install -g graphql-cli ## Getting started ```sh -# 1. Bootstrap GraphQL server in directory `my-app`, based on `vue-fullstack-basic` boilerplate -graphql create my-app --boilerplate vue-fullstack-basic +# 1. Bootstrap GraphQL server in directory `my-app` +graphql create my-app -# 2. When prompted, deploy the Prisma service to a _public cluster_ +# 2. Select `vue-fullstack-basic` boilerplate using arrow keys (up/down) +? Choose GraphQL boilerplate project: +❯ vue-fullstack-basic -# 3. Navigate into the `server` directory of the new project +# 3. When prompted, deploy the Prisma service to a _public cluster_ + +# 4. Navigate into the `server` directory of the new project cd my-app/server -# 4. Start the server +# 5. Start the server yarn dev # runs server on http://localhost:4000, and opens GraphQL PLayground -# 5. Open a new tab in the terminal and navigate back into my-app; +# 6. Open a new tab in the terminal and navigate back into my-app; # then run the app cd .. yarn start