mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
2b15b13bbf
* feat(core): implement oidc and single sign on connector class init oidc and single sign on connecter class * refactor(core): refactor the structure of single sign-on classes refactor the structure of single sign-on classes * chore(core): provide more comments provide more comments * feat(core): add sso-connector-factories api (#4708) * feat(core): add sso-connector-factories api add sso-connector-factories api * fix(test): remove hard code connector name remove hard code connector name * feat(core): add POST sso-connectors api (#4719) * feat(core): add POST sso-connectors api add POST sso-connectors api * chore(core): add some comments add some comments * test(core): add post sso connectors integration tests add post sso connectors integration tests * feat(core): add GET sso-connectors api (#4723) * feat(core): add GET sso-connectors api add GET sso-connectors api * test(core): add tests add tests * test(core): add ut add ut * fix(test): remove console statement remove console statement * feat(core): implement get sso-connector by id endpoint (#4730) * feat(core): implement get sso-connector by id endpoint implement get sso-connector by id endpoint * feat(core): implement delete sso-connector by id endpoint (#4733) * feat(core): implement delete sso-connector by id endpoint implement delete sso-connector by id endpoint * feat(core): implement patch sso-connectors api (#4734) * feat(core): implement patch sso-connectors api implement patch sso-connectors api * fix(core): avoid patch api empty update case avoid patch api empty update case * feat(core): implement patch sso-connector config api (#4736) implement patch sso-connector config api * fix(test): replace SAML provider name with dummy name replace SAML provider name with dummy name as we are going to implement the SAML connector soon * fix(core): fix rebase error of findAll query output type fix rebase error of the findAll query output type |
||
---|---|---|
.. | ||
src | ||
static/html | ||
CHANGELOG.md | ||
jest.config.js | ||
jest.setup.js | ||
nodemon.json | ||
package.json | ||
README.md | ||
tsconfig.base.json | ||
tsconfig.build.json | ||
tsconfig.json | ||
tsconfig.test.json |
@logto/core
The core backend service.
Get Started
Copy proper .env
to project root. (TBD: design the config process)
pnpm i && pnpm dev
OpenAPI Doc
OpenAPI (Swagger) json is available on http(s)://your-domain/api/swagger.json
. If you are running locally, the default URL will be http://localhost:3001/api/swagger.json
. Consume it in the way you like.
Using ReDoc
The doc website can be served by redoc-cli in an extremely easy way:
npx redoc-cli serve http://localhost:3001/api/swagger.json
Using Swagger Editor
Copy the API output and paste it in the Swagger Editor.