dev.club β€” where best developers and top companies connect.

dev.club β€” where best developers and top companies connect.Invite only

Request invite
Casdoor

An open-source, self-hosted identity and access management platform

Casdoor is a single sign-on (SSO) and authentication server with a web console.
It speaks OAuth 2.0, OIDC, SAML 2.0, CAS, LDAP, SCIM 2.0, WebAuthn, TOTP/MFA and MCP,
and connects to Google Workspace, Microsoft Entra ID (Azure AD), GitHub and many other identity providers.

Website Β· Documentation Β· Live demo Β· Discord

Release Docker Pulls Build Status golangci-lint Discord License

Casdoor sign-in page with password, code, WebAuthn and Face ID tabs and social login icons

The sign-in page your users see: password, email/SMS code, WebAuthn and Face ID, plus every social provider you enable.

Casdoor admin console dashboard with user, application and provider statistics Admin console. Users, tokens, organizations and providers at a glance. Casdoor applications list showing several applications with their organizations and providers Applications. Every app that delegates login to Casdoor, across all organizations. Casdoor application settings, Providers tab, with per-provider signup, signin and unlink toggles Application settings. OAuth, SAML, providers and branding β€” no redeploy, no config file.

❀️ Sponsors

APIMart Thanks to APIMart for sponsoring this project! APIMart is a low-cost API platform for AI image & video generation β€” GPT-Image-2 from $0.006/image, 160+ images per dollar. One async API covers both image and video: submit a task, get an ID, fetch results via polling or callback. Batch tens of thousands of images without timeouts, switch models without changing code. Pay-as-you-go with no monthly fee β€” sign up here to get started.

πŸš€ Try it in 30 seconds

No database and no config file needed. This runs Casdoor on SQLite with sample data:

docker run -p 8000:8000 casbin/casdoor-all-in-one

Open http://localhost:8000 and sign in:

Field Value
Organization built-in
Username admin
Password 123

The sign-in form has separate organization and username fields. Docs sometimes write this pair as built-in/admin β€” that is the same thing, not a username containing a slash.

Prefer not to install anything? Use the hosted demos:

Demo URL Notes
Writable demo.casdoor.com Full access, so you can click through everything. All data resets about every 5 minutes.
Read-only door.casdoor.net Stable global demo. Every write operation fails by design.

Both accept the same built-in / admin / 123 credentials.

πŸ€” Why Casdoor

Casdoor is a complete identity provider, not an authentication proxy and not a library you embed. It stores your users, issues the tokens, and gives you an admin console to manage all of it β€” so your applications can delegate login entirely and never handle a password themselves.

If all you need is a login screen in front of an existing reverse proxy, a smaller tool may suit you better. Casdoor is for when you want to own the user directory itself.

πŸ“¦ Installation

Four supported paths, fastest first. All of them end up at http://localhost:8000.

Docker β€” all-in-one (evaluation)

docker run -p 8000:8000 casbin/casdoor-all-in-one

Bundles SQLite and demo data into a single container. Ideal for a first look, but not intended for production: the data lives inside the container and disappears with it.

Guide: Try with Docker

Docker Compose β€” Casdoor with MySQL

docker-compose.yml starts Casdoor next to a MySQL 8 container.

Two things to know before running it:

  1. Compose builds the image from source (Go backend plus React frontend). The first docker compose up takes several minutes, so it is not the quick-trial path β€” use the all-in-one image above for that.
  2. You have to point Casdoor at the bundled database first.

Set the MySQL settings in conf/app.conf to match the db service:

driverName = mysql
dataSourceName = root:123456@tcp(localhost:3306)/
dbName = casdoor

Use localhost here even though MySQL runs in a separate container: the compose file sets RUNNING_IN_DOCKER=true, and Casdoor rewrites localhost to the Docker host address at startup (see conf/conf.go). Then start everything:

docker compose up

The compose entrypoint already passes --createDatabase=true, so the casdoor database is created for you.

Guide: Try with Docker

Kubernetes β€” Helm

Requires Helm v3 and a running cluster:

helm install casdoor oci://registry-1.docker.io/casbin/casdoor-helm-charts

The chart does not expose Casdoor outside the cluster by default. To reach it, find the service and forward a port:

kubectl get svc
kubectl port-forward svc/<service-name-from-above> 8000:8000

For a real deployment, configure an Ingress and an external database through the chart's values. k8s.yaml in this repo is a minimal plain-manifest example if you would rather not use Helm.

Guide: Try with Helm

From source β€” for development

Use this if you intend to modify Casdoor. Prerequisites: Go 1.25+ (see go.mod), Node.js 20 LTS, Yarn 1.x, and a supported database (MySQL, PostgreSQL, SQLite, SQL Server and others).

git clone https://github.com/casdoor/casdoor.git
cd casdoor

Set driverName, dataSourceName and dbName in conf/app.conf. For MySQL, create the casdoor database first, or start the server with --createDatabase=true. Then build the frontend and run the server:

cd web && yarn install && yarn build && cd .. && go run main.go

While working on the frontend, run yarn start in web/ instead of yarn build to get hot reload on port 7001, with go run main.go serving the API from a second terminal.

Guide: Server installation

πŸ‘‰ After you sign in

At this point you have a running identity provider with nothing connected to it yet. Next:

  1. Change the admin password. 123 is a demo credential and must not survive contact with production.
  2. Connect your first application β€” create an Application in the console, copy its Client ID and Client Secret, and point your app's OAuth/OIDC client at Casdoor.
  3. Add an identity provider if you want Google, GitHub or Entra ID sign-in.
  4. Pick an SDK for your language, or call the Public API directly.

✨ Features

πŸ” Authentication

🏒 Organizations and access control

πŸ€– AI and agents

πŸ› οΈ Developer experience

🧱 Technology stack

Casdoor is a frontend–backend separated application:

πŸ“– Documentation

The full documentation lives at casdoor.ai/docs. Common starting points:

I want to… Go to
Install Casdoor From source Β· Docker Β· Helm
Connect my application How to connect to Casdoor
Use the API Public API Β· Swagger UI
Choose an SDK Integrations
Deploy to production Deployment

πŸ”Œ SDKs and integrations

Official SDKs and framework integrations, by language:

The complete list, including reverse proxies and third-party applications, is in the Integrations documentation.

πŸ”’ Security

Please do not report security vulnerabilities in public GitHub issues. Email admin@casdoor.org instead β€” SECURITY.md has the full policy and disclosure process.

Before exposing a Casdoor instance to the internet:

🀝 Community and support

🌍 Contributing

Contributions are welcome. For anything larger than a small fix, please open an issue first so you can agree on the approach with the maintainers before writing code.

Read the contribution guidelines before you start.

Translations. User-facing strings in the web console go through i18next. When you add or change one under web/, update the English catalog at web/src/locales/en/data.json. The other languages are translated on Crowdin and should not be edited by hand.

πŸ™Œ Support Casdoor

Casdoor is free and open source. If it saves you time, consider supporting its development on Open Collective.

Sponsors on Open Collective

Backers on Open Collective

πŸ“„ License

Casdoor is licensed under the Apache License 2.0.


If Casdoor is useful to you, a star helps other people find it.

GitHub Stars

Β© 2026 Casdoor Β· Apache License 2.0

Join libs.tech

...and unlock some superpowers

GitHub

We won't share your data with anyone else.