Skip to content

Update README.md #444

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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
16 changes: 10 additions & 6 deletions advanced/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down