You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/launchpad/README.md
+14-3Lines changed: 14 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,14 +41,25 @@ For the best development experience, you will want to use VS Code with the [Vola
41
41
42
42
```bash
43
43
## from repo root
44
-
yarn dev
44
+
yarn watch
45
45
```
46
46
47
-
This starts Vite in watch mode. It also starts the GraphQL Server. You can access it on `http://localhost:52200/graphql`.
47
+
This starts Vite in watch mode, and any code-generation scripts that need to be running in the background to support our environment.
48
+
49
+
In a seprate terminal, run:
50
+
51
+
```bash
52
+
## from repo root
53
+
yarn cypress:open
54
+
```
55
+
56
+
This starts the GraphQL Server, and opens Cypress. By running this separate from the `yarn watch`, you can kill & respawn the Cypress binary without the overhead of the watch processes you'd see by running `yarn dev`.
57
+
58
+
You can access the GraphQL inspector on `http://localhost:52200/graphql`.
48
59
49
60

50
61
51
-
If you notice your IDE has not updated and is showing errors, even after `yarn watch` has run, you might need to reopen your IDE. With the amount of code generation running, sometimes the IDE does not recognize that the code has changed.
62
+
If you notice your IDE has not updated and is showing errors, even after `yarn watch` has run, you might need to reload your IDE. With the amount of code generation running, sometimes the IDE does not recognize that the code has changed.
0 commit comments