Minimal implementation of direct task calls (#6075)

This commit is contained in:
Eric Liang
2019-11-12 11:45:28 -08:00
committed by GitHub
parent 35d177f459
commit f3f86385d6
49 changed files with 1358 additions and 384 deletions
+3 -1
View File
@@ -168,7 +168,9 @@ class Dashboard(object):
raise ValueError(
"Dashboard static asset directory not found at '{}'. If "
"installing from source, please follow the additional steps "
"required to build the dashboard.".format(static_dir))
"required to build the dashboard: "
"cd python/ray/dashboard/client && npm ci && "
"npm run build".format(static_dir))
self.app.router.add_static("/static", static_dir)
self.app.router.add_get("/api/ray_config", ray_config)