1
0
Fork 0
mirror of synced 2024-10-04 03:54:37 +13:00
budibase/packages/builder/src/builderStore/index.js

21 lines
553 B
JavaScript
Raw Normal View History

import { getStore } from "./store"
import { getBackendUiStore } from "./store/backend"
import { getWorkflowStore } from "./store/workflow/"
2020-07-14 04:15:22 +12:00
import posthog from "posthog-js"
2019-07-13 21:35:57 +12:00
export const store = getStore()
export const backendUiStore = getBackendUiStore()
2020-05-22 08:40:16 +12:00
export const workflowStore = getWorkflowStore()
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-14 04:15:22 +12:00
posthog.init(process.env.POSTHOG_TOKEN, {
2020-07-14 06:44:42 +12:00
api_host: process.env.POSTHOG_URL,
2020-07-14 04:15:22 +12:00
})
2020-03-05 05:47:47 +13:00
}
} catch (err) {
console.log(err)
}
2020-05-07 21:53:34 +12:00
}