split hosts by comma

remotes/1693176582716663532/tmp_refs/heads/watchparty
justcool393 2022-10-24 16:21:11 -05:00
parent 67826a52e0
commit d8070625d8
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ from os import path
SITE = environ.get("SITE").strip()
SITE_NAME = environ.get("SITE_NAME").strip()
SITE_HOSTS = environ.get("SITE_HOSTS").strip()
SITE_HOSTS = environ.get("SITE_HOSTS").strip().split(',')
SECRET_KEY = environ.get("SECRET_KEY").strip()
PROXY_URL = environ.get("PROXY_URL").strip()
GIPHY_KEY = environ.get('GIPHY_KEY').strip()