Skip to content

Commit

Permalink
Default to None for Ory info
Browse files Browse the repository at this point in the history
  • Loading branch information
kipparker committed Jul 25, 2024
1 parent ea3329b commit 4490609
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion authentication/.env.template
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ OAUTH_URL=https://<ory-supplied-url>
CLIENT_ID=<perseus-client-id>
CLIENT_SECRET=<perseus-client-secret>
REDIRECT_URI=http://127.0.0.1:3000/callback
ISSUER_URL=https://authentication_web
ISSUER_URL=https://authentication_web

8 changes: 4 additions & 4 deletions authentication/api/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@


ISSUER_URL = os.environ.get("ISSUER_URL", "https://perseus-demo-authentication.ib1.org")
CLIENT_ID = os.environ.get("CLIENT_ID", "21653835348762")
CLIENT_ID = os.environ.get("CLIENT_ID")
CLIENT_SECRET = os.environ.get(
"CLIENT_SECRET", "uE4NgqeIpuSV_XejQ7Ds3jsgA1yXhjR1MXJ1LbPuyls"
"CLIENT_SECRET"
)
OAUTH_URL = os.environ.get(
"OAUTH_URL", "https://vigorous-heyrovsky-1trvv0ikx9.projects.oryapis.com"
"OAUTH_URL"
)
OAUTH_CLIENT_ID = os.environ.get(
"OAUTH_CLIENT_ID", "f67916ce-de33-4e2f-a8e3-cbd5f6459c30"
"OAUTH_CLIENT_ID"
)
AUTHORIZATION_ENDPOINT = os.environ.get(
"AUTHORIZATION_ENDPOINT",
Expand Down

0 comments on commit 4490609

Please sign in to comment.