Fix vitepress warning
Change the syntax highlighting of the `env` code block from `env` to `sh` because currently vite press doesn't support the env language and instead complains > The language 'env' is not loaded, falling back to 'txt' for syntax highlighting.
This commit is contained in:
parent
26b162c8dc
commit
d5164693ff
1 changed files with 4 additions and 1 deletions
|
@ -160,7 +160,10 @@ RUN chmod +x /docker-entrypoint.d/replace_ente_endpoints.sh
|
|||
Create a `.credentials.env` file at the root of the project with the following
|
||||
content (here you need to set the correct value of each variable):
|
||||
|
||||
```env
|
||||
<!-- The following code block should have language env, but vitepress currently
|
||||
doesn't support that language, so use sh as a reasonable fallback instead. -->
|
||||
|
||||
```sh
|
||||
# run `go run tools/gen-random-keys/main.go` in the server directory to generate the keys
|
||||
ENTE_KEY_ENCRYPTION=
|
||||
ENTE_KEY_HASH=
|
||||
|
|
Loading…
Reference in a new issue