X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f2b031de2183439f8aade2f290cd0e3f95f6438c..15987424ea63c887e3ec5f8a1c42cc985301b884:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index faaf6b81..fcc02f1e 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -29,6 +29,14 @@ import { collectionActionSet } from './views-components/context-menu/action-sets import { collectionResourceActionSet } from './views-components/context-menu/action-sets/collection-resource-action-set'; import { initPickerProjectTree } from './views-components/project-tree-picker/project-tree-picker'; +const getBuildNumber = () => "BN-" + (process.env.BUILD_NUMBER || "dev"); +const getGitCommit = () => "GIT-" + (process.env.GIT_COMMIT || "latest").substr(0, 7); +const getBuildInfo = () => getBuildNumber() + " / " + getGitCommit(); + +const buildInfo = getBuildInfo(); + +console.log(`Starting arvados [${buildInfo}]`); + addMenuActionSet(ContextMenuKind.ROOT_PROJECT, rootProjectActionSet); addMenuActionSet(ContextMenuKind.PROJECT, projectActionSet); addMenuActionSet(ContextMenuKind.RESOURCE, resourceActionSet); @@ -46,10 +54,10 @@ fetchConfig() store.dispatch(initAuth()); store.dispatch(getProjectList(services.authService.getUuid())); - store.dispatch(initPickerProjectTree()); - + store.dispatch(initPickerProjectTree()); + const TokenComponent = (props: any) => ; - const WorkbenchComponent = (props: any) => ; + const WorkbenchComponent = (props: any) => ; const App = () =>