We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf7dc2c commit 1d2aa24Copy full SHA for 1d2aa24
services/web/server/src/simcore_service_webserver/statics.py
@@ -37,12 +37,7 @@ async def index(request: web.Request):
37
"""
38
log.debug("index.request:\n %s", request)
39
40
-<<<<<<< HEAD
41
- index_path = get_client_outdir(request.app) / APP_TO_BE_SERVED / "index.html"
42
- log.debug("Serving %s ...", index_path)
43
-=======
44
index_path = get_client_outdir(request.app) / "index.html"
45
->>>>>>> parent of 6a3952b9... serve qxapp
46
with index_path.open() as ofh:
47
return web.Response(text=ofh.read(), content_type="text/html")
48
0 commit comments