Skip to content

Commit

Permalink
Merge pull request #27 from Qwizi/0.0.30
Browse files Browse the repository at this point in the history
fix error with list
  • Loading branch information
Qwizi authored Apr 23, 2024
2 parents 789b0c2 + 4d626b2 commit 108a420
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cs2_battle_bot/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = os.environ.get("DEBUG", "True") == "True"

ALLOWED_HOSTS = os.environ.get("ALLOWED_HOSTS", ["*"]).split(",")
ALLOWED_HOSTS = ["*"]
CORS_ALLOWED_ORIGINS = os.environ.get("CORS_ALLOWED_ORIGINS", "http://localhost:8002").split(",")
CORS_ALLOW_ALL_ORIGINS = os.environ.get("CORS_ALLOW_ALL_ORIGINS", True)
CSRF_TRUSTED_ORIGINS = os.environ.get(
Expand Down

0 comments on commit 108a420

Please sign in to comment.