Skip to content

Commit 8bd52b0

Browse files
committed
Add steps for manual oauth testing with Auth0
1 parent 5ce2ad9 commit 8bd52b0

File tree

11 files changed

+1689
-0
lines changed

11 files changed

+1689
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,13 @@ poetry.toml
206206
# LSP config files
207207
pyrightconfig.json
208208

209+
# Security: Exclude files that may contain secrets
210+
.env-old
211+
auth0-test-config.env
212+
*.env.backup
213+
*.env.local
214+
*-config.env
215+
209216
### venv ###
210217
# Virtualenv
211218
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
@@ -222,3 +229,5 @@ libs/redis/docs/.Trash*
222229
.idea/*
223230
.vscode/settings.json
224231
.cursor
232+
233+
*.pyc

agent_memory_server/config.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ class Settings(BaseSettings):
6262
oauth2_jwks_url: str | None = None
6363
oauth2_algorithms: list[str] = ["RS256"]
6464

65+
# Auth0 Client Credentials (for testing and client applications)
66+
auth0_client_id: str | None = None
67+
auth0_client_secret: str | None = None
68+
6569
# Other Application settings
6670
log_level: Literal["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"] = "INFO"
6771

0 commit comments

Comments
 (0)