We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e80fba commit f7092d3Copy full SHA for f7092d3
docs/cli-dev.mdx
@@ -48,3 +48,22 @@ yarn dlx trigger.dev@beta dev --debugger
48
```
49
50
</CodeGroup>
51
+
52
+### Concurrently running the terminal
53
54
+Install the concurrently package as a dev dependency:
55
56
+```ts
57
+concurrently --raw --kill-others npm:dev:remix npm:dev:trigger
58
+```
59
60
+Then add something like this in your package.json scripts. This assumes you're running Next.js so swap that bit out if you're not:
61
62
+```json
63
+"scripts": {
64
+ "dev": "concurrently --raw --kill-others npm:dev:*",
65
+ "dev:next": "next dev",
66
+ "dev:trigger": "npx trigger.dev@beta dev",
67
+ //...
68
+}
69
0 commit comments