Use url_root from Flask rather than hardcoding hostname. (#520)

Allows running in a container on a remote host, should also allow running
behind a proxy with a url prefix.
This commit is contained in:
James Taylor
2018-12-19 16:20:26 -08:00
committed by Charlotte Weaver
parent bd523280a4
commit f2eb2cad82
2 changed files with 3 additions and 4 deletions
+1 -2
View File
@@ -117,12 +117,11 @@ def launch(
# Setup app
cellxgene_url = f"http://{host}:{port}"
api_base = f"{cellxgene_url}/api/"
# Import Flask app
from server.app.app import app
app.config.update(DATASET_TITLE=title, CXG_API_BASE=api_base)
app.config.update(DATASET_TITLE=title)
if not verbose:
log = logging.getLogger("werkzeug")