X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e13e7dd672160e4ab5569c24133f4f6032db4a9a..6ce4e6e255691116f2c8e229d45df571dffa6b9a:/src/index.tsx diff --git a/src/index.tsx b/src/index.tsx index cfdbb46c..bee08c80 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -28,6 +28,14 @@ import { collectionFilesItemActionSet } from './views-components/context-menu/ac import { collectionActionSet } from './views-components/context-menu/action-sets/collection-action-set'; import { collectionResourceActionSet } from './views-components/context-menu/action-sets/collection-resource-action-set'; +const getBuildNumber = () => "BN-" + (process.env.REACT_APP_BUILD_NUMBER || "dev"); +const getGitCommit = () => "GIT-" + (process.env.REACT_APP_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); @@ -44,10 +52,10 @@ fetchConfig() const store = configureStore(history, services); store.dispatch(initAuth()); - store.dispatch(getProjectList(services.authService.getUuid())); - + store.dispatch(getProjectList(services.authService.getUuid())); + const TokenComponent = (props: any) => ; - const WorkbenchComponent = (props: any) => ; + const WorkbenchComponent = (props: any) => ; const App = () =>