-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: move docs to this repository (#396)
- Loading branch information
Showing
150 changed files
with
28,578 additions
and
799 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,14 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
sdk: ory/[email protected] | ||
changelog: ory/[email protected] | ||
goreleaser: ory/[email protected] | ||
nancy: ory/[email protected] | ||
sdk: ory/[email protected] | ||
changelog: ory/[email protected] | ||
goreleaser: ory/[email protected] | ||
nancy: ory/[email protected] | ||
docs: ory/[email protected] | ||
golangci: ory/[email protected] | ||
|
||
jobs: | ||
format: | ||
docker: | ||
- image: circleci/golang:1.13 | ||
working_directory: /go/src/github.com/ory/oathkeeper | ||
steps: | ||
# This is disabled for now because goimports is really slow when go modules are used, see | ||
# https://github.com/golang/go/issues/27287 | ||
# | ||
# - run: | ||
# name: Enable go1.12 modules | ||
# command: | | ||
# echo 'export GO111MODULE=on' >> $BASH_ENV | ||
# source $BASH_ENV | ||
- checkout | ||
- run: | ||
name: Enable go1.13 modules | ||
command: | | ||
echo 'export GO111MODULE=on' >> $BASH_ENV | ||
source $BASH_ENV | ||
- run: curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin latest | ||
- run: go mod download | ||
- run: golangci-lint run ./... | ||
|
||
test: | ||
docker: | ||
- image: circleci/golang:1.14 | ||
|
@@ -46,41 +25,25 @@ jobs: | |
- run: ./test/e2e/run.sh | ||
- run: ./test/reload/run.sh | ||
|
||
docs: | ||
docker: | ||
- image: circleci/golang:1.13 | ||
working_directory: /go/src/github.com/ory/oathkeeper | ||
steps: | ||
- checkout | ||
- run: git config --global user.email "[email protected]" | ||
- run: git config --global user.name "ORY Continuous Integration" | ||
- run: "git clone https://arekkas:[email protected]/ory/docs.git ../docs" | ||
- run: "cp ./.schemas/config.schema.json ../docs/schemas/oathkeeper.config.schema.json" | ||
- run: "(cd ../docs && git add -A && git commit -a -m \"Update ORY Oathkeeper Swagger and JSON Schemas\" && git push origin) || exit 0" | ||
|
||
workflows: | ||
"test, build, and relase": | ||
jobs: | ||
- nancy/test: | ||
filters: | ||
tags: | ||
only: /.*/ | ||
- format: | ||
- golangci/lint: | ||
filters: | ||
tags: | ||
only: /.*/ | ||
- test: | ||
filters: | ||
tags: | ||
only: /.*/ | ||
- docs: | ||
filters: | ||
branches: | ||
only: master | ||
- changelog/generate: | ||
requires: | ||
- test | ||
- format | ||
- golangci/lint | ||
filters: | ||
tags: | ||
only: /.*/ | ||
|
@@ -90,11 +53,11 @@ workflows: | |
appname: Ory_Oathkeeper | ||
requires: | ||
- test | ||
- format | ||
- golangci/lint | ||
- sdk/release: | ||
requires: | ||
- test | ||
- format | ||
- golangci/lint | ||
- goreleaser/release | ||
filters: | ||
tags: | ||
|
@@ -109,9 +72,18 @@ workflows: | |
requires: | ||
- goreleaser/test | ||
- test | ||
- format | ||
- golangci/lint | ||
filters: | ||
tags: | ||
only: /.*/ | ||
branches: | ||
ignore: /.*/ | ||
- docs/build: | ||
requires: | ||
- test | ||
- golangci/lint | ||
filters: | ||
tags: | ||
only: /.*/ | ||
branches: | ||
only: master |
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authenticators.anonymous.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthenticatorsAnonymous" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authenticators.cookie_session.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthenticatorsCookieSession" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authenticators.jwt.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthenticatorsJwt" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authenticators.noop.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthenticatorsAnonymous" | ||
} |
5 changes: 5 additions & 0 deletions
5
.schema/pipeline/authenticators.oauth2_client_credentials.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authenticators.oauth2_client_credentials.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthenticatorsOauth2ClientCredentials" | ||
} |
5 changes: 5 additions & 0 deletions
5
.schema/pipeline/authenticators.oauth2_introspection.schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authenticators.oauth2_introspection.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthenticatorsOauth2Introspection" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authenticators.unauthorized.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthenticatorsAnonymous" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authorizers.allow.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authorizers.deny.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authorizers.keto_engine_acp_ory.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthorizersKetoEngineAcpOry" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/authorizers.remote_json.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configAuthorizersRemoteJSON" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/mutators.cookie.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configErrorsJSON" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/mutators.cookie.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configErrorsRedirect" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/mutators.cookie.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configErrorsWWWAuthenticate" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/mutators.cookie.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configMutatorsCookie" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/mutators.header.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configMutatorsHeader" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"$id": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/mutators.hydrator.schema.json", | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$ref": "https://raw.githubusercontent.com/ory/oathkeeper/master/.schema/config.schema.json#/definitions/configMutatorsHydrator" | ||
} |
Oops, something went wrong.