Skip to content

Commit

Permalink
Merge pull request #341 from inbo/add-comma
Browse files Browse the repository at this point in the history
add comma
  • Loading branch information
mainlyIt authored Feb 5, 2025
2 parents 602f978 + 8ef8a8b commit cc304e3
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 cc304e3

Please sign in to comment.