Skip to content

Commit b00308e

Browse files
committed
chore: set default dev script to full dev instead of dev:noConvex
1 parent 26b00e8 commit b00308e

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ A super efficient and powerful, yet friendly LLM Chat system, featuring:
107107
#### [`backend`](./apps/backend): a [Hono🔥](https://hono.dev/) app.
108108

109109
#### [`backend-convex`](./apps/backend-convex): a [Convex](https://convex.dev/) app.
110-
* By default, the Convex app is not enabled in development, to enable it, change the root `dev` script from `dev:noConvex` to `dev:full`.
111110

112111
### Local packages
113112

@@ -134,6 +133,8 @@ To build all apps and packages, run the following command:
134133

135134
### Develop
136135

136+
If you just want a quick check out, without having to set up anything, you can use `pnpm run dev:noConvex`, this will skips `backend-convex` and which is the only component that have initial set ups, though this of course means related features are disabled.
137+
137138
To develop all apps and packages, run the following command:
138139
`pnpm run dev`
139140

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,8 @@
1111
"lint": "turbo run lint",
1212
"test:types": "turbo run test:types",
1313
"quickcheck": "turbo run quickcheck",
14-
"dev": "pnpm run dev:noConvex",
14+
"dev": "dotenvx run -- turbo run dev:prepare && dotenvx run -- turbo run dev",
1515
"dev:noConvex": "dotenvx run -- turbo run dev --filter=!backend-convex",
16-
"dev:full": "dotenvx run -- turbo run dev:prepare && dotenvx run -- turbo run dev",
1716
"devSST": "dotenvx run -f .env.sst -f .env -- sst dev \"pnpm -F=frontend run dev\"",
1817
"build": "dotenvx run -- turbo run build",
1918
"deploy": "dotenvx run -- turbo run deploy",

0 commit comments

Comments
 (0)