Skip to content

Commit 1b2c035

Browse files
committed
update README
1 parent eeb4632 commit 1b2c035

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

README.md

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,19 @@ If you haven't already, install the Graphcool CLI:
2020
npm install -g graphcool
2121
```
2222

23-
Once it's installed, you can deploy the Graphcool service based on the existing definition inside the [`server`](./server) directory:
23+
Once it's installed, you can start the GraphQL server:
2424

2525
```sh
2626
cd server
2727
yarn install
28-
graphcool deploy server
28+
graphcool deploy
29+
yarn start
2930
```
3031

31-
When prompted which cluster you want to deploy to, choose any of the **Shared Clusters** options (`shared-eu-west-1`, `shared-ap-northeast-1` or `shared-us-west-2`).
32-
33-
### 3. Connect the app with your GraphQL API
34-
35-
Paste the service ID (which you find in the generated `.graphcoolrc` file inside the `server` directory or by running `graphcool info`) into `./src/index.js` replacing the current placeholder `__SERVICE_ID__`.
36-
37-
### 4. Install dependencies & run locally
32+
### 3. Install dependencies & run locally
3833

3934
```sh
4035
cd ..
4136
yarn install
4237
yarn start # open http://localhost:3000 in your browser
43-
```
44-
45-
38+
```

0 commit comments

Comments
 (0)