Voltaserve Identity Provider
Getting Started
Install dependencies:
bun i
Run for development:
bun run dev
Run for production:
bun run start
Build Docker image:
docker build -t voltaserve/idp .
Generate and Publish Documentation
Generate swagger.json
:
pnpm swagger-autogen && mv ./swagger.json ./docs
Preview (will be served at http://127.0.0.1:7777):
npx @redocly/cli preview-docs --port 7777 ./docs/swagger.json
Generate the final static HTML documentation:
npx @redocly/cli build-docs ./docs/swagger.json --output ./docs/index.html