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: docs/contributing/frontend.md
+3-2
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ This is a guide to help the Coder community and also Coder members contribute to
6
6
7
7
You can run the UI and access the dashboard in two ways:
8
8
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.
10
10
- 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.
11
11
12
12
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
18
18
-[React](https://reactjs.org/) as framework
19
19
-[Typescript](https://www.typescriptlang.org/) to keep our sanity
20
20
-[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
22
22
-[react-router](https://reactrouter.com/en/main) for routing
23
23
-[TanStack Query v4](https://tanstack.com/query/v4/docs/react/overview) for fetching data
24
24
-[XState](https://xstate.js.org/docs/) for handling complex state flows
25
25
-[axios](https://github.com/axios/axios) as fetching lib
26
26
-[Playwright](https://playwright.dev/) for E2E testing
27
27
-[Jest](https://jestjs.io/) for integration testing
28
28
-[Storybook](https://storybook.js.org/) and [Chromatic](https://www.chromatic.com/) for visual testing
0 commit comments