diff --git a/jam-ui/.env.development.example b/jam-ui/.env.development.example index a54034cba..e92816d59 100644 --- a/jam-ui/.env.development.example +++ b/jam-ui/.env.development.example @@ -2,4 +2,6 @@ HOST=beta.jamkazam.local PORT=4000 REACT_APP_ORIGIN=jamkazam.local REACT_APP_LEGACY_BASE_URL=http://www.jamkazam.local:3000 -REACT_APP_API_BASE_URL=http://www.jamkazam.local:3000/api \ No newline at end of file +REACT_APP_API_BASE_URL=http://www.jamkazam.local:3000/api +REACT_APP_BITBUCKET_BUILD_NUMBER=dev +REACT_APP_BITBUCKET_COMMIT=dev \ No newline at end of file diff --git a/jam-ui/src/layouts/JKBuildMeta.js b/jam-ui/src/layouts/JKBuildMeta.js new file mode 100644 index 000000000..f825ba990 --- /dev/null +++ b/jam-ui/src/layouts/JKBuildMeta.js @@ -0,0 +1,17 @@ +import React from 'react'; + +function JKBuildMeta() { + return ( +
` + }} + /> + ); +} + +export default JKBuildMeta; diff --git a/jam-ui/src/layouts/JKLayout.js b/jam-ui/src/layouts/JKLayout.js index 2cdd3ad09..1688c032a 100644 --- a/jam-ui/src/layouts/JKLayout.js +++ b/jam-ui/src/layouts/JKLayout.js @@ -5,7 +5,7 @@ import { CloseButton, Fade } from '../components/common/Toast'; import DashboardLayout from './JKDashboardLayout'; import ErrorLayout from './ErrorLayout'; - +import BuildMeta from "./JKBuildMeta"; const Layout = () => { return ( @@ -15,6 +15,7 @@ const Layout = () => { } position={toast.POSITION.BOTTOM_RIGHT} /> + ); };