zitadel/docs
Silvan 20e4f1ce57
feat(actions): add fields to complement token flow (#5336)
* deprecated `ctx.v1.userinfo`-field in "pre userinfo creation" trigger in favour of `ctx.v1.claims`. The trigger now behaves the same as "pre access token creation"
* added `ctx.v1.claims` to "complement tokens" flow
* added `ctx.v1.grants` to "complement tokens" flow
* document `ctx.v1.getUser()` in "complement tokens" flow

* feat(actions): add getUser() and grant

* map user grants

* map claims

* feat(actions): claims in complement token ctx

* docs(actions): add new fields of complement token

* docs(actions): additions to complement token

* docs(actions): correct field names
2023-03-08 15:26:28 +01:00
..
docs feat(actions): add fields to complement token flow (#5336) 2023-03-08 15:26:28 +01:00
src docs: links in readme and banner (#5390) 2023-03-07 15:31:05 +01:00
static docs: proposal restructure (#5318) 2023-03-07 09:33:13 +02:00
.gitignore docs: improve api docs (#5158) 2023-02-23 18:08:06 +07:00
babel.config.js docs: improve api docs (#5158) 2023-02-23 18:08:06 +07:00
buf.gen.yaml docs: improve api docs (#5158) 2023-02-23 18:08:06 +07:00
Dockerfile docs: improve api docs (#5158) 2023-02-23 18:08:06 +07:00
docusaurus.config.js docs: proposal restructure (#5318) 2023-03-07 09:33:13 +02:00
nginx.conf docs: improve api docs (#5158) 2023-02-23 18:08:06 +07:00
package.json docs: proposal restructure (#5318) 2023-03-07 09:33:13 +02:00
README.md docs: improve api docs (#5158) 2023-02-23 18:08:06 +07:00
sidebars.js docs: proposal restructure (#5318) 2023-03-07 09:33:13 +02:00
tailwind.config.js docs: add tailwindcss for styles, oidc authorize endpoint playground (#4707) 2022-12-05 18:36:12 +01:00
vercel.json chore: fix vercel 404 (#5212) 2023-02-13 21:47:42 +02:00
yarn.lock docs: change quickstart guide (#5343) 2023-03-03 15:10:34 +05:30

ZITADEL-Docs

This website is built using Docusaurus 2, a modern static website generator.

Add new Sites to existing Topics

To add a new site to the already existing structure simply save the md file into the corresponding folder and append the sites id int the file sidebars.js.

Installation

yarn install

Local Development

yarn start

Container Image

If you just want to start docusaurus locally without installing node you can fallback to our container image. Execute the following commands from the repository root to build and start a local version of ZITADEL

docker build -f docs/Dockerfile . -t zitadel-docs
docker run -p 8080:8080 zitadel-docs