Skip to content

Commit

Permalink
Merge pull request #340 from inbo/fix-uat
Browse files Browse the repository at this point in the history
correct uat db url
  • Loading branch information
mainlyIt authored Feb 5, 2025
2 parents 64ac8bb + 06fd959 commit 602f978
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vespadb/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

secrets = {
"DJANGO_SECRET_KEY": os.getenv("SECRET_KEY"),
"CORS_ALLOWED_ORIGINS": os.getenv("CORS_ALLOWED_ORIGINS", "http://localhost:3000").split(",") + ["https://nesten.vespawatch.be", "https://uat-nesten.vespawatch.be", "https://db.vespawatch.be" "https://uat-db-vespawatch.be"],
"CSRF_TRUSTED_ORIGINS": os.getenv("CSRF_TRUSTED_ORIGINS", "http://localhost:3000").split(",") + ["https://nesten.vespawatch.be", "https://uat-nesten.vespawatch.be", "https://db.vespawatch.be","https://uat-db-vespawatch.be"],
"CORS_ALLOWED_ORIGINS": os.getenv("CORS_ALLOWED_ORIGINS", "http://localhost:3000").split(",") + ["https://nesten.vespawatch.be", "https://uat-nesten.vespawatch.be", "https://db.vespawatch.be" "https://uat-db.vespawatch.be"],
"CSRF_TRUSTED_ORIGINS": os.getenv("CSRF_TRUSTED_ORIGINS", "http://localhost:3000").split(",") + ["https://nesten.vespawatch.be", "https://uat-nesten.vespawatch.be", "https://db.vespawatch.be","https://uat-db.vespawatch.be"],
"CSRF_COOKIE_DOMAIN": os.getenv("CSRF_COOKIE_DOMAIN", ".vespawatch.be"),
"SESSION_COOKIE_DOMAIN": os.getenv("SESSION_COOKIE_DOMAIN", ".vespawatch.be"),
"POSTGRES_DB": os.getenv("POSTGRES_DB"),
Expand Down

0 comments on commit 602f978

Please sign in to comment.