Skip to content

Commit

Permalink
Update settings.py; added OEAIDAM env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
csae8092 authored Jun 4, 2024
1 parent 608186c commit a5ae316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions djangobaseproject/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,5 +203,5 @@
CELERY_BROKER_URL = os.environ.get("amqp://")
CELERY_TASK_TRACK_STARTED = True

OEAIDAM_USER = ""
OEAIDAM_USER_PW =""
OEAIDAM_USER = os.environ.get("OEAIDAM_USER")
OEAIDAM_USER_PW = os.environ.get("OEAIDAM_USER_PW")

0 comments on commit a5ae316

Please sign in to comment.