b40caf12df
* core: bump node from 18 to 20 Bumps node from 18 to 20. --- updated-dependencies: - dependency-name: node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * bump node everywhere, fixup go ci Signed-off-by: Jens Langhammer <jens@goauthentik.io> * bump versions in docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
22 lines
727 B
Markdown
22 lines
727 B
Markdown
---
|
|
title: Website development environment
|
|
---
|
|
|
|
If you want to only make changes to the website, you only need node.
|
|
|
|
### Prerequisites
|
|
|
|
- Node (any recent version should work, we use 20.x to build)
|
|
- Make (again, any recent version should work)
|
|
|
|
:::info
|
|
Depending on platform, some native dependencies might be required. On macOS, run `brew install node@20`
|
|
:::
|
|
|
|
### Instructions
|
|
|
|
1. Clone the git repo from https://github.com/goauthentik/authentik
|
|
2. Run `make website-install` to install the website development dependencies
|
|
3. Run `website-watch` to start a development server to see and preview your changes
|
|
4. Finally when you're about to commit your changes, run `make website` to run the linter and auto-formatter.
|