Skip to content

Latest commit

History

History
28 lines (21 loc) 路 898 Bytes

README.adoc

File metadata and controls

28 lines (21 loc) 路 898 Bytes

Demo project for "Beyond routing 馃殌 Spring Cloud Gateway with style" talk

This demo repository contains examples for Spring Cloud Gateway filters for the Spring/IO 23 talk by @martamedio and @abelsromero.

Testing the project

To start using the repo, you鈥檒l need:

  1. A valid OIDC provider, for example Okta.

  2. Then, create a local configuration to the resoruces directory with the following information.

    Note
    This file is intended to contain secrets and is added in .gitignore.
    application-local.yml
    sso:
      scope: openid,email
      issuer-uri:
      client-id:
      client-secret:
  3. Start httpbin locally to prevent network issues.

    docker run -d -p 8585:80 kennethreitz/httpbin