Installation
Ce contenu n’est pas encore disponible dans votre langue.
Core library
Section titled “Core library”go get github.com/cerberauth/scimplyThis pulls in the zero-dependency packages: schema, resource, protocol, store, and server.
Database connectors
Section titled “Database connectors”Install only the connector you need.
go get github.com/cerberauth/scimply/connector/postgresRequires pgx/v5.
go get github.com/cerberauth/scimply/connector/mysqlUses the standard database/sql interface with any MySQL-compatible driver.
go get github.com/cerberauth/scimply/connector/mongodbRequires the official mongo-driver.
go get github.com/cerberauth/scimply/connector/scimNo additional dependencies — forwards requests to an upstream SCIM server over HTTP.
From source
Section titled “From source”-
Clone the repository:
Terminal window git clone https://github.com/cerberauth/scimply.gitcd scimply -
Run the tests:
Terminal window go test ./...