change USERNAME and PASSWORD to FLOWISE_USERNAME and FLOWISE_PASSWORD to prevent conflict with machine env variables

This commit is contained in:
Henry
2023-05-27 20:23:18 +01:00
parent dc4fe13b12
commit 0f0d887f78
12 changed files with 29 additions and 37 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import dotenv from 'dotenv'
import path from 'path'
const envPath = path.join(__dirname, '..', '..', '.env')
dotenv.config({ path: envPath })
dotenv.config({ path: envPath, override: true })
export * from './Interface'
export * from './utils'