Merge branch 'main' into feature/CustomTool

This commit is contained in:
Henry
2023-06-22 16:17:26 +01:00
9 changed files with 150 additions and 7 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ import { getUserHome } from './utils'
let appDataSource: DataSource
export const init = async (): Promise<void> => {
const homePath = path.join(getUserHome(), '.flowise')
const homePath = process.env.DATABASE_PATH ?? path.join(getUserHome(), '.flowise')
appDataSource = new DataSource({
type: 'sqlite',