A simple mock SAML 2.0 Identity Provider
Go to file
dependabot[bot] 1c4e40d734
Bump @types/node from 20.14.2 to 20.14.5 (#642)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 20.14.2 to 20.14.5.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-18 20:22:52 +02:00
.github Bump docker/build-push-action from 5 to 6 (#640) 2024-06-17 17:29:05 +01:00
components link to github repo 2022-12-15 22:20:22 +00:00
lib fixed namespace login (#473) 2024-01-21 01:01:09 +00:00
pages fixed text 2024-03-16 20:01:08 +00:00
public updated logo 2022-05-22 19:57:08 +01:00
styles Download metadata url (#91) 2022-10-25 17:38:56 +01:00
types Cleanup 2022-02-18 09:37:27 +05:30
utils updated saml20 (#534) 2024-03-08 13:34:09 +00:00
.dockerignore Optimise multi platform build (#128) 2022-12-09 15:04:40 +00:00
.env.example fixed build when NEXT_PUBLIC_GTM_ID is not defined 2022-03-01 13:31:28 +00:00
.eslintrc.json Bump typescript from 5.1.6 to 5.2.2 (#298) 2023-09-21 00:06:39 +01:00
.gitignore added vscode to gitignore 2024-02-04 15:39:25 +00:00
.prettierrc.js prettier fix 2024-02-04 15:38:33 +00:00
.release-it.json added release-it 2023-12-25 12:15:10 +00:00
app.json prettier fix 2024-02-04 15:38:33 +00:00
Dockerfile updated node 2024-05-14 16:29:10 +01:00
LICENSE added license file 2022-02-23 17:16:41 +00:00
next-env.d.ts Initial commit from Create Next App 2022-01-08 20:41:13 +05:30
next.config.js turn off esmExternals 2023-10-29 00:21:15 +01:00
package-lock.json Bump @types/node from 20.14.2 to 20.14.5 (#642) 2024-06-18 20:22:52 +02:00
package.json Bump @types/node from 20.14.2 to 20.14.5 (#642) 2024-06-18 20:22:52 +02:00
postcss.config.js prettier fix 2024-02-04 15:38:33 +00:00
Procfile Oneclick deploy button (#2) 2022-02-28 21:54:20 +00:00
README.md Update README.md 2024-04-03 19:11:16 +01:00
tailwind.config.js cleanup theme, we use default in any case (#535) 2024-03-08 15:17:34 +00:00
tsconfig.json prettier fix 2024-02-04 15:38:33 +00:00

Mock SAML from BoxyHQ

Deploy Deploy with Vercel

Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.

Namespaces

Try Mock SAML, our free hosted service. Whilst we use the root domain for our own testing you can create your own unique namespace by navigating to https://mocksaml.com/namespace/any_name_of_your_choice.

Install

With Docker

The docker container can be found at boxyhq/mock-saml.

docker run \
  -p 4000:4000 \
  -e APP_URL="http://localhost:4000" \
  -e ENTITY_ID="https://saml.example.com/entityid" \
  -e PUBLIC_KEY="<PUBLIC_KEY>" \
  -e PRIVATE_KEY="<PRIVATE_KEY>" \
  -d boxyhq/mock-saml

Refer to env.example for instructions on how to create the key pair. Replace <PUBLIC_KEY> with Base64 encoded value of public key. Replace <PRIVATE_KEY> with Base64 encoded value of private key.

Without Docker

git clone https://github.com/boxyhq/mock-saml.git
cd mock-saml

Install dependencies

npm install

Update .env with your own keys.

cp .env.example .env

Build the Next.js app.

npm run build

Run the Mock SAML server.

npm run start

Contributing

Thanks for taking the time to contribute! Contributions make the open-source community a fantastic place to learn, inspire, and create. Any contributions you make are greatly appreciated.

Please try to create bug reports that are:

  • Reproducible. Include steps to reproduce the problem.
  • Specific. Include as much detail as possible: which version, what environment, etc.
  • Unique. Do not duplicate existing opened issues.
  • Scoped to a Single Bug. One bug per report.

Community

  • Discord (For live discussion with the Open-Source Community and BoxyHQ team)
  • Twitter (Follow us)
  • GitHub Issues (Contributions, report issues and product ideas)