Skip to content

Commit 1179a4c

Browse files
committed
Update dev docs to suggest using bun instead of yarn for web app
Resolves #1218
1 parent 51e5c86 commit 1179a4c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

documentation/docs/contributing/development.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -106,13 +106,13 @@ sudo -u postgres createdb khoj --password
106106

107107
```shell
108108
cd src/interface/web/
109-
yarn install
110-
yarn export
109+
bun install
110+
bun export
111111
```
112112

113-
You can optionally use `yarn dev` to start a development server for the front-end which will be available at http://localhost:3000. This is especially useful if you're making changes to the front-end code, but not necessary for running Khoj. Note that streaming does not work on the dev server due to how it is handled with SSR in Next.js.
113+
You can optionally use `bun dev` to start a development server for the front-end which will be available at http://localhost:3000. This is especially useful if you're making changes to the front-end code, but not necessary for running Khoj. Note that streaming does not work on the dev server due to how it is handled with SSR in Next.js.
114114

115-
Always run `yarn export` to test your front-end changes on http://localhost:42110 before creating a PR.
115+
Always run `bun export` to test your front-end changes on http://localhost:42110 before creating a PR.
116116

117117
#### 4. Run
118118
1. Start Khoj

0 commit comments

Comments
 (0)