import { isProd } from './common/util'; import { start as startDB } from '@mybricks/rocker-dao'; // @ts-ignore export const InitialStart = () => { if (isProd()) { // startDB([]); } else { startDB([{ dbType: 'MYSQL', host: '47.111.7.45', user: 'apaas-staging', password: 'mBcLYBXTyJM8CERc', port: 3306, database: 'apaas-staging', sqlPath: '../../' }]); } };