2023-07-05 20:45:32 -04:00
# Frontend
2022-11-11 05:27:05 -05:00
## Environment Variables
The following environment variables are recognized by the frontend process.
2023-03-12 16:36:40 -04:00
| Name | Possible Values | Description |
2024-09-13 09:36:09 -04:00
|--------------------------|----------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
2023-03-12 16:36:40 -04:00
| HD_BASE_URL | Any URL with protocol, domain and optionally directory and port. Must end with a trailing slash. (e.g. `http://localhost:3001/` ) | The URL under which the frontend is expected. Setting this is mandatory so the server side rendering can generate assets URLs. You only need to set this yourself if you use the production mode. |
2023-07-05 20:45:32 -04:00
| HD_RENDERER_BASE_URL | Same as `HD_BASE_URL` | You can provide this variable if the renderer should use another domain than the editor. This is recommended for security reasons but not mandatory. This variable is optional and will fallback to `HD_BASE_URL` |
2023-03-12 16:36:40 -04:00
| NEXT_PUBLIC_USE_MOCK_API | `true` , `false` | Will activate the mocked backend |
| NEXT_PUBLIC_TEST_MODE | `true` , `false` | Will activate additional HTML attributes that are used to identify elements for test suits. |
2022-11-11 05:27:05 -05:00
2023-07-02 16:31:04 -04:00
Variables that start with `NEXT_PUBLIC_` will be compiled into the build. You can't change them
2023-07-05 20:45:32 -04:00
after compilation. You shouldn't need to set them yourself. Use the designated npm tasks instead.
2022-11-11 05:27:05 -05:00
## UI Test
2023-07-05 20:45:32 -04:00
Curious about the new look and feel? We provide a demo of the new UI on
2024-07-29 18:44:22 -04:00
[HedgeDoc.dev][hedgedoc-dev]. This version is reset every day, so data is not persisted.
2022-11-11 05:27:05 -05:00
2024-07-29 18:44:22 -04:00
Please see also our [privacy policy][privacy].
2022-11-11 05:27:05 -05:00
## Running Tests
### Unit
Unit testing is done via jest.
1. Run `yarn test`
### End2End
2023-07-05 20:45:32 -04:00
We use [cypress][cypress] for e2e tests.
2022-11-11 05:27:05 -05:00
2023-07-05 20:45:32 -04:00
1. Start the frontend with `yarn start:dev:test` (or use a test build using `yarn build:test`
which you can start using `yarn start` ). The usage of `:test` is mandatory!
2024-01-17 05:13:51 -05:00
2. Run `yarn test:e2e:open` to open the cypress test loader
2022-11-11 05:27:05 -05:00
3. Choose your browser and start a test suite
2024-01-17 05:13:51 -05:00
To run all tests in a headless browser use `yarn test:e2e`
2022-11-11 05:27:05 -05:00
### Bundle analysis
You can inspect the generated production-bundle files to look for optimization issues.
1. run `yarn analyze` . This will overwrite any existing builds!
2. Open the generated `.next/server/analyze/server.html` in your favourite browser
2023-07-02 06:52:37 -04:00
## Enable Debug Logging in Production
2023-07-05 20:45:32 -04:00
The debug logger can be enabled in production by setting `debugLogging` in the browser's
local storage to `true` . This can be done e.g. by executing this JavaScript command
in the browser's console.
2023-07-02 06:52:37 -04:00
```javascript
2023-07-05 20:45:32 -04:00
window.localStorage.setItem("debugLogging", "true");
2023-07-02 06:52:37 -04:00
```
2023-07-05 20:45:32 -04:00
[hedgedoc-dev]: https://hedgedoc.dev
[privacy]: https://hedgedoc.org/privacy-policy
[cypress]: https://cypress.io