website: fix typos (#20996)

This commit is contained in:
Dominic R
2026-03-20 12:43:34 -04:00
committed by GitHub
parent e3ddc0422a
commit 090d09fcdd
95 changed files with 279 additions and 280 deletions

View File

@@ -35,7 +35,7 @@ If you're focusing solely on frontend development, you can create a minimal deve
echo "AUTHENTIK_TAG=gh-next" >> ./lifecycle/container/.env
echo "AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-next" >> ./lifecycle/container/.env
echo "AUTHENTIK_LOG_LEVEL=debug" >> ./lifecycle/container/.env
echo "GIT_BUILD_HASH="dev"" >> ./lifecycle/container/.env
echo 'GIT_BUILD_HASH="dev"' >> ./lifecycle/container/.env
```
3. Create a Docker Compose override file (`compose.override.yml`) in the root of the repository. This will override the volume configurations for the local configuration file (`local.env.yml`) and mount the directory for the frontend code (`web`) into the docker containers. Docker will automatically mount the web files generated by the build process. The `local.env.yml` mount is optional, but allows you to override the default configuration.
@@ -48,7 +48,7 @@ If you're focusing solely on frontend development, you can create a minimal deve
- ./local.env.yml:/local.env.yml
```
4. From the repository root, run the front-end build script. This will install the npm packages needed to run the frontend project and start the project in watch mode.
4. From the repository root, run the frontend build script. This will install the npm packages needed to run the frontend project and start the project in watch mode.
```shell
make node-install