* Update README.md * Add app.json * Update README.md * Add files via upload * Update README.md * Update README.md
43 lines
996 B
Markdown
43 lines
996 B
Markdown
# Mock SAML from BoxyHQ
|
|
|
|
[](https://heroku.com/deploy)
|
|
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fboxyhq%2Fmock-saml&env=APP_URL,ENTITY_ID&envDescription=APP_URL%20(Usually%20https%3A%2F%2F%3Cproject-name%3E.vercel.app)%20can%20be%20set%20after%20deployment%20from%20the%20project%20dashboard.%20Set%20to%20''%20if%20not%20applicable.&envLink=https%3A%2F%2Fgithub.com%2Fboxyhq%2Fmock-saml%2Fblob%2Fmain%2F.env.example&project-name=mock-saml)
|
|
|
|
Mock SAML is a SAML 2.0 IdP for development and testing the SAML SSO integration.
|
|
|
|
Try [Mock SAML](https://mocksaml.com/)
|
|
|
|
## Install
|
|
|
|
```
|
|
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
|
|
```
|