├── .gitignore ├── .prettierignore ├── LICENSE ├── extra-components └── changelog.mdx ├── next.config.js ├── package.json ├── pages ├── _app.mdx ├── _document.js ├── _meta.json ├── authorizer-go │ ├── _meta.json │ ├── example.mdx │ └── index.mdx ├── authorizer-js │ ├── _meta.json │ ├── functions.md │ └── index.mdx ├── authorizer-react │ ├── _meta.json │ ├── components.md │ ├── hooks.md │ └── index.mdx ├── authorizer-svelte │ ├── _meta.json │ ├── components.md │ └── index.mdx ├── contributing.md ├── core │ ├── _meta.json │ ├── cli.md │ ├── databases.md │ ├── email.mdx │ ├── endpoints.md │ ├── env.mdx │ ├── graphql-api.md │ └── index.mdx ├── deployment │ ├── _meta.json │ ├── alibaba-cloud.md │ ├── authorizer-cloud.md │ ├── binary.md │ ├── easypanel.md │ ├── flydotio.md │ ├── helm-chart.md │ ├── heroku.mdx │ ├── index.md │ ├── koyeb.md │ ├── kubernetes.md │ ├── railway.md │ └── render.md ├── getting-started.mdx ├── index.mdx └── integrations │ ├── gatsbyjs.md │ ├── hasura.md │ └── react-native.md ├── postcss.config.js ├── public ├── favicon_io │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── images │ ├── Data_security_28.jpg │ ├── authorizer-arch.png │ ├── authorizer-architecture.png │ ├── fly-01.png │ ├── fly-02.png │ ├── heroku.png │ ├── koyeb_app_config.png │ ├── koyeb_authorizer_url.png │ ├── koyeb_database_url.png │ ├── logo.png │ ├── railway.png │ ├── render_1.png │ └── render_2.png └── site.webmanifest ├── readme.md ├── styles └── globals.css ├── tailwind.config.js ├── theme.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/LICENSE -------------------------------------------------------------------------------- /extra-components/changelog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/extra-components/changelog.mdx -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/_app.mdx -------------------------------------------------------------------------------- /pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/_document.js -------------------------------------------------------------------------------- /pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/_meta.json -------------------------------------------------------------------------------- /pages/authorizer-go/_meta.json: -------------------------------------------------------------------------------- 1 | { 2 | "index": "Getting Started" 3 | } -------------------------------------------------------------------------------- /pages/authorizer-go/example.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-go/example.mdx -------------------------------------------------------------------------------- /pages/authorizer-go/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-go/index.mdx -------------------------------------------------------------------------------- /pages/authorizer-js/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-js/_meta.json -------------------------------------------------------------------------------- /pages/authorizer-js/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-js/functions.md -------------------------------------------------------------------------------- /pages/authorizer-js/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-js/index.mdx -------------------------------------------------------------------------------- /pages/authorizer-react/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-react/_meta.json -------------------------------------------------------------------------------- /pages/authorizer-react/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-react/components.md -------------------------------------------------------------------------------- /pages/authorizer-react/hooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-react/hooks.md -------------------------------------------------------------------------------- /pages/authorizer-react/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-react/index.mdx -------------------------------------------------------------------------------- /pages/authorizer-svelte/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-svelte/_meta.json -------------------------------------------------------------------------------- /pages/authorizer-svelte/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-svelte/components.md -------------------------------------------------------------------------------- /pages/authorizer-svelte/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/authorizer-svelte/index.mdx -------------------------------------------------------------------------------- /pages/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/contributing.md -------------------------------------------------------------------------------- /pages/core/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/_meta.json -------------------------------------------------------------------------------- /pages/core/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/cli.md -------------------------------------------------------------------------------- /pages/core/databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/databases.md -------------------------------------------------------------------------------- /pages/core/email.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/email.mdx -------------------------------------------------------------------------------- /pages/core/endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/endpoints.md -------------------------------------------------------------------------------- /pages/core/env.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/env.mdx -------------------------------------------------------------------------------- /pages/core/graphql-api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/graphql-api.md -------------------------------------------------------------------------------- /pages/core/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/core/index.mdx -------------------------------------------------------------------------------- /pages/deployment/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/_meta.json -------------------------------------------------------------------------------- /pages/deployment/alibaba-cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/alibaba-cloud.md -------------------------------------------------------------------------------- /pages/deployment/authorizer-cloud.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/authorizer-cloud.md -------------------------------------------------------------------------------- /pages/deployment/binary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/binary.md -------------------------------------------------------------------------------- /pages/deployment/easypanel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/easypanel.md -------------------------------------------------------------------------------- /pages/deployment/flydotio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/flydotio.md -------------------------------------------------------------------------------- /pages/deployment/helm-chart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/helm-chart.md -------------------------------------------------------------------------------- /pages/deployment/heroku.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/heroku.mdx -------------------------------------------------------------------------------- /pages/deployment/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/index.md -------------------------------------------------------------------------------- /pages/deployment/koyeb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/koyeb.md -------------------------------------------------------------------------------- /pages/deployment/kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/kubernetes.md -------------------------------------------------------------------------------- /pages/deployment/railway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/railway.md -------------------------------------------------------------------------------- /pages/deployment/render.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/deployment/render.md -------------------------------------------------------------------------------- /pages/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/getting-started.mdx -------------------------------------------------------------------------------- /pages/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/index.mdx -------------------------------------------------------------------------------- /pages/integrations/gatsbyjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/integrations/gatsbyjs.md -------------------------------------------------------------------------------- /pages/integrations/hasura.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/integrations/hasura.md -------------------------------------------------------------------------------- /pages/integrations/react-native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/pages/integrations/react-native.md -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon_io/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/favicon_io/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/favicon_io/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/favicon_io/android-chrome-512x512.png -------------------------------------------------------------------------------- /public/favicon_io/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/favicon_io/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon_io/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/favicon_io/favicon-16x16.png -------------------------------------------------------------------------------- /public/favicon_io/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/favicon_io/favicon-32x32.png -------------------------------------------------------------------------------- /public/favicon_io/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/favicon_io/favicon.ico -------------------------------------------------------------------------------- /public/images/Data_security_28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/Data_security_28.jpg -------------------------------------------------------------------------------- /public/images/authorizer-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/authorizer-arch.png -------------------------------------------------------------------------------- /public/images/authorizer-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/authorizer-architecture.png -------------------------------------------------------------------------------- /public/images/fly-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/fly-01.png -------------------------------------------------------------------------------- /public/images/fly-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/fly-02.png -------------------------------------------------------------------------------- /public/images/heroku.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/heroku.png -------------------------------------------------------------------------------- /public/images/koyeb_app_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/koyeb_app_config.png -------------------------------------------------------------------------------- /public/images/koyeb_authorizer_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/koyeb_authorizer_url.png -------------------------------------------------------------------------------- /public/images/koyeb_database_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/koyeb_database_url.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/images/railway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/railway.png -------------------------------------------------------------------------------- /public/images/render_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/render_1.png -------------------------------------------------------------------------------- /public/images/render_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/images/render_2.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/readme.md -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /theme.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/theme.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/authorizerdev/docs/HEAD/yarn.lock --------------------------------------------------------------------------------