Skip to content

Commit c5d4a4d

Browse files
docs: update FE stack (#9112)
1 parent 63278ab commit c5d4a4d

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/contributing/frontend.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a guide to help the Coder community and also Coder members contribute to
66

77
You can run the UI and access the dashboard in two ways:
88

9-
- Build the UI pointing to an external Coder server: `CODER_HOST=https://mycoder.com yarn dev` inside of the `site` folder. This is helpful when you are building something in the UI and already have the data on your deployed server.
9+
- Build the UI pointing to an external Coder server: `CODER_HOST=https://mycoder.com pnpm dev` inside of the `site` folder. This is helpful when you are building something in the UI and already have the data on your deployed server.
1010
- Build the entire Coder server + UI locally: `./scripts/develop.sh` in the root folder. It is useful when you have to contribute with features that are not deployed yet or when you have to work on both, frontend and backend.
1111

1212
In both cases, you can access the dashboard on `http://localhost:8080`. If you are running the `./scripts/develop.sh` you can log in using the default credentials: `admin@coder.com` and `SomeSecurePassword!`.
@@ -18,14 +18,15 @@ All our dependencies are described in `site/package.json` but here are the most
1818
- [React](https://reactjs.org/) as framework
1919
- [Typescript](https://www.typescriptlang.org/) to keep our sanity
2020
- [Vite](https://vitejs.dev/) to build the project
21-
- [Material V4](https://v4.mui.com/) for UI components
21+
- [Material V5](https://mui.com/material-ui/getting-started/) for UI components
2222
- [react-router](https://reactrouter.com/en/main) for routing
2323
- [TanStack Query v4](https://tanstack.com/query/v4/docs/react/overview) for fetching data
2424
- [XState](https://xstate.js.org/docs/) for handling complex state flows
2525
- [axios](https://github.com/axios/axios) as fetching lib
2626
- [Playwright](https://playwright.dev/) for E2E testing
2727
- [Jest](https://jestjs.io/) for integration testing
2828
- [Storybook](https://storybook.js.org/) and [Chromatic](https://www.chromatic.com/) for visual testing
29+
- [PNPM](https://pnpm.io/) as package manager
2930

3031
## Structure
3132

0 commit comments

Comments
 (0)