2020-03-20 19:47:01 +01:00
|
|
|
import { getStore } from "./store"
|
|
|
|
import { getBackendUiStore } from "./store/backend"
|
2020-05-28 21:20:03 +02:00
|
|
|
import { getWorkflowStore } from "./store/workflow/"
|
2020-07-13 18:15:22 +02:00
|
|
|
import posthog from "posthog-js"
|
2019-07-13 11:35:57 +02:00
|
|
|
|
2020-02-03 10:24:25 +01:00
|
|
|
export const store = getStore()
|
2020-03-20 19:47:01 +01:00
|
|
|
export const backendUiStore = getBackendUiStore()
|
2020-05-21 22:40:16 +02:00
|
|
|
export const workflowStore = getWorkflowStore()
|
2019-07-13 11:35:57 +02:00
|
|
|
|
|
|
|
export const initialise = async () => {
|
2020-02-03 10:24:25 +01:00
|
|
|
try {
|
2020-03-04 17:47:47 +01:00
|
|
|
if (process.env.NODE_ENV === "production") {
|
2020-07-13 18:15:22 +02:00
|
|
|
posthog.init(process.env.POSTHOG_TOKEN, {
|
|
|
|
api_host: process.env.POSTHOG_URL,
|
|
|
|
})
|
2020-03-04 17:47:47 +01:00
|
|
|
}
|
2020-02-03 10:24:25 +01:00
|
|
|
} catch (err) {
|
|
|
|
console.log(err)
|
|
|
|
}
|
2020-05-07 11:53:34 +02:00
|
|
|
}
|