├── .editorconfig ├── .github └── workflows │ ├── format.yml │ └── main.yml ├── .gitignore ├── .prettierignore ├── .widdershins ├── config.json └── templates │ ├── README.md │ ├── authentication.def │ ├── authentication_none.def │ ├── callbacks.def │ ├── code_go.dot │ ├── code_http.dot │ ├── code_java.dot │ ├── code_javascript.dot │ ├── code_nodejs.dot │ ├── code_python.dot │ ├── code_ruby.dot │ ├── code_shell.dot │ ├── debug.def │ ├── discovery.def │ ├── footer.def │ ├── links.def │ ├── main.dot │ ├── operation.dot │ ├── parameters.def │ ├── responses.def │ ├── security.def │ └── translations.dot ├── README.md ├── README_TEMPLATE.md ├── contrib ├── config.js ├── docs │ └── index.md ├── sidebar.js ├── sidebar.json └── theme.css ├── docs └── .gitkeep ├── docusaurus.config.js ├── package.json ├── scripts ├── config.js ├── docker-tag.js ├── fix-api.js └── rerelease.js ├── src ├── css │ └── .gitkeep ├── pages │ └── versions.js ├── plugins │ ├── docusaurus-plugin-matamo │ │ ├── analytics.js │ │ ├── index.js │ │ └── package.json │ └── ory-scripts-loader │ │ ├── index.js │ │ └── package.json └── theme │ ├── API.js │ ├── API.module.css │ ├── CodeFromRemote.js │ ├── CodeFromRemote.module.css │ ├── Footer │ ├── index.js │ └── styles.module.css │ ├── Mermaid.js │ ├── RoutedDocPage │ ├── index.tsx │ └── styles.module.css │ ├── ketoRelationTuplesPrism.js │ ├── mermaid.module.css │ └── prism-include-languages.js ├── static └── img │ ├── favico.png │ ├── logo-docs.svg │ ├── logo-docusaurus-template.svg │ ├── logo-hydra.svg │ ├── logo-keto.svg │ ├── logo-kratos.svg │ └── logo-oathkeeper.svg └── update.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.github/workflows/format.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.prettierignore -------------------------------------------------------------------------------- /.widdershins/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/config.json -------------------------------------------------------------------------------- /.widdershins/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/README.md -------------------------------------------------------------------------------- /.widdershins/templates/authentication.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/authentication.def -------------------------------------------------------------------------------- /.widdershins/templates/authentication_none.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/authentication_none.def -------------------------------------------------------------------------------- /.widdershins/templates/callbacks.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/callbacks.def -------------------------------------------------------------------------------- /.widdershins/templates/code_go.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_go.dot -------------------------------------------------------------------------------- /.widdershins/templates/code_http.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_http.dot -------------------------------------------------------------------------------- /.widdershins/templates/code_java.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_java.dot -------------------------------------------------------------------------------- /.widdershins/templates/code_javascript.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_javascript.dot -------------------------------------------------------------------------------- /.widdershins/templates/code_nodejs.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_nodejs.dot -------------------------------------------------------------------------------- /.widdershins/templates/code_python.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_python.dot -------------------------------------------------------------------------------- /.widdershins/templates/code_ruby.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_ruby.dot -------------------------------------------------------------------------------- /.widdershins/templates/code_shell.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/code_shell.dot -------------------------------------------------------------------------------- /.widdershins/templates/debug.def: -------------------------------------------------------------------------------- 1 | {{= data.utils.inspect(data) }} 2 | -------------------------------------------------------------------------------- /.widdershins/templates/discovery.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/discovery.def -------------------------------------------------------------------------------- /.widdershins/templates/footer.def: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.widdershins/templates/links.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/links.def -------------------------------------------------------------------------------- /.widdershins/templates/main.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/main.dot -------------------------------------------------------------------------------- /.widdershins/templates/operation.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/operation.dot -------------------------------------------------------------------------------- /.widdershins/templates/parameters.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/parameters.def -------------------------------------------------------------------------------- /.widdershins/templates/responses.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/responses.def -------------------------------------------------------------------------------- /.widdershins/templates/security.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/security.def -------------------------------------------------------------------------------- /.widdershins/templates/translations.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/.widdershins/templates/translations.dot -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/README.md -------------------------------------------------------------------------------- /README_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/README_TEMPLATE.md -------------------------------------------------------------------------------- /contrib/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/contrib/config.js -------------------------------------------------------------------------------- /contrib/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/contrib/docs/index.md -------------------------------------------------------------------------------- /contrib/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/contrib/sidebar.js -------------------------------------------------------------------------------- /contrib/sidebar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/contrib/sidebar.json -------------------------------------------------------------------------------- /contrib/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/contrib/theme.css -------------------------------------------------------------------------------- /docs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/docusaurus.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/package.json -------------------------------------------------------------------------------- /scripts/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/scripts/config.js -------------------------------------------------------------------------------- /scripts/docker-tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/scripts/docker-tag.js -------------------------------------------------------------------------------- /scripts/fix-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/scripts/fix-api.js -------------------------------------------------------------------------------- /scripts/rerelease.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/scripts/rerelease.js -------------------------------------------------------------------------------- /src/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/pages/versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/pages/versions.js -------------------------------------------------------------------------------- /src/plugins/docusaurus-plugin-matamo/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/plugins/docusaurus-plugin-matamo/analytics.js -------------------------------------------------------------------------------- /src/plugins/docusaurus-plugin-matamo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/plugins/docusaurus-plugin-matamo/index.js -------------------------------------------------------------------------------- /src/plugins/docusaurus-plugin-matamo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/plugins/docusaurus-plugin-matamo/package.json -------------------------------------------------------------------------------- /src/plugins/ory-scripts-loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/plugins/ory-scripts-loader/index.js -------------------------------------------------------------------------------- /src/plugins/ory-scripts-loader/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "index.js" 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/API.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/API.js -------------------------------------------------------------------------------- /src/theme/API.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/API.module.css -------------------------------------------------------------------------------- /src/theme/CodeFromRemote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/CodeFromRemote.js -------------------------------------------------------------------------------- /src/theme/CodeFromRemote.module.css: -------------------------------------------------------------------------------- 1 | .container { 2 | margin-bottom: var(--ifm-leading); 3 | } 4 | -------------------------------------------------------------------------------- /src/theme/Footer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/Footer/index.js -------------------------------------------------------------------------------- /src/theme/Footer/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/Footer/styles.module.css -------------------------------------------------------------------------------- /src/theme/Mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/Mermaid.js -------------------------------------------------------------------------------- /src/theme/RoutedDocPage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/RoutedDocPage/index.tsx -------------------------------------------------------------------------------- /src/theme/RoutedDocPage/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/RoutedDocPage/styles.module.css -------------------------------------------------------------------------------- /src/theme/ketoRelationTuplesPrism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/ketoRelationTuplesPrism.js -------------------------------------------------------------------------------- /src/theme/mermaid.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/mermaid.module.css -------------------------------------------------------------------------------- /src/theme/prism-include-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/src/theme/prism-include-languages.js -------------------------------------------------------------------------------- /static/img/favico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/static/img/favico.png -------------------------------------------------------------------------------- /static/img/logo-docs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/static/img/logo-docs.svg -------------------------------------------------------------------------------- /static/img/logo-docusaurus-template.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/static/img/logo-docusaurus-template.svg -------------------------------------------------------------------------------- /static/img/logo-hydra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/static/img/logo-hydra.svg -------------------------------------------------------------------------------- /static/img/logo-keto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/static/img/logo-keto.svg -------------------------------------------------------------------------------- /static/img/logo-kratos.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/static/img/logo-kratos.svg -------------------------------------------------------------------------------- /static/img/logo-oathkeeper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/static/img/logo-oathkeeper.svg -------------------------------------------------------------------------------- /update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ory/docusaurus-template/HEAD/update.sh --------------------------------------------------------------------------------