1
0
Fork 0
mirror of synced 2024-07-04 22:11:23 +12:00
budibase/packages/builder/src/builderStore/index.js

19 lines
492 B
JavaScript
Raw Normal View History

import { getStore } from "./store"
import { getBackendUiStore } from "./store/backend"
import { getAutomationStore } from "./store/automation/"
2020-07-15 03:00:58 +12:00
import analytics from "../analytics"
2019-07-13 21:35:57 +12:00
export const store = getStore()
export const backendUiStore = getBackendUiStore()
export const automationStore = getAutomationStore()
2019-07-13 21:35:57 +12:00
export const initialise = async () => {
try {
2020-03-05 05:47:47 +13:00
if (process.env.NODE_ENV === "production") {
2020-07-15 03:00:58 +12:00
analytics.activate()
2020-03-05 05:47:47 +13:00
}
} catch (err) {
console.log(err)
}
2020-05-07 21:53:34 +12:00
}