Skip to content

Commit

Permalink
fix env value in config
Browse files Browse the repository at this point in the history
  • Loading branch information
reyniersbram committed Mar 10, 2024
1 parent 097f202 commit 6015ba9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Config:

env = {
"frontend_url": os.getenv("FRONTEND_URL", ""),
"cas_server_url": os.getenv("CAS_SERVER", ""),
"cas_server_url": os.getenv("CAS_SERVER_URL", ""),
"database_uri": os.getenv("DATABASE_URI", ""),
"secret_key": os.getenv("SECRET_KEY", ""),
"algorithm": os.getenv("ALGORITHM", ""),
Expand Down

0 comments on commit 6015ba9

Please sign in to comment.