jsolow commited on
Commit
9b3dc6f
1 Parent(s): 3166aa0

Add * to allowed hosts to test

Browse files

App doesn't load from spaces view. Testing if this is the cause

Files changed (1) hide show
  1. src/grubguesser/settings.py +1 -0
src/grubguesser/settings.py CHANGED
@@ -32,6 +32,7 @@ app_domain = os.getenv("HF_SPACE_DOMAIN")
32
  if app_domain:
33
  ALLOWED_HOSTS.append(app_domain)
34
 
 
35
 
36
  # Application definition
37
 
 
32
  if app_domain:
33
  ALLOWED_HOSTS.append(app_domain)
34
 
35
+ ALLOWED_HOSTS = ["*"]
36
 
37
  # Application definition
38