@@ -120,27 +120,26 @@ Flowise has 3 different modules in a single mono repository.
120
120
121
121
Flowise support different environment variables to configure your instance. You can specify the following variables in the ` .env` file inside ` packages/server` folder. Read [more](https://docs.flowiseai.com/environment-variables)
122
122
123
- | Variable | Description | Type | Default |
124
- | -------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------ | ----------------------------------- |
125
- | PORT | The HTTP port Flowise runs on | Number | 3000 |
126
- | FLOWISE_USERNAME | Username to login | String | |
127
- | FLOWISE_PASSWORD | Password to login | String | |
128
- | DEBUG | Print logs from components | Boolean | |
129
- | LOG_PATH | Location where log files are stored | String | ` your-path/Flowise/logs` |
130
- | LOG_LEVEL | Different levels of logs | Enum String: ` error` , ` info` , ` verbose` , ` debug` | ` info` |
131
- | APIKEY_PATH | Location where api keys are saved | String | ` your-path/Flowise/packages/server` |
132
- | TOOL_FUNCTION_BUILTIN_DEP | NodeJS built-in modules to be used for Tool Function | String | |
133
- | TOOL_FUNCTION_EXTERNAL_DEP | External modules to be used for Tool Function | String | |
134
- | OVERRIDE_DATABASE | Override current database with default | Enum String: ` true` , ` false` | ` true` |
135
- | DATABASE_TYPE | Type of database to store the flowise data | Enum String: ` sqlite` , ` mysql` , ` postgres` | ` sqlite` |
136
- | DATABASE_PATH | Location where database is saved (When DATABASE_TYPE is sqlite) | String | ` your-home-dir/.flowise` |
137
- | DATABASE_HOST | Host URL or IP address (When DATABASE_TYPE is not sqlite) | String | |
138
- | DATABASE_PORT | Database port (When DATABASE_TYPE is not sqlite) | String | |
139
- | DATABASE_USER | Database username (When DATABASE_TYPE is not sqlite) | String | |
140
- | DATABASE_PASSWORD | Database password (When DATABASE_TYPE is not sqlite) | String | |
141
- | DATABASE_NAME | Database name (When DATABASE_TYPE is not sqlite) | String | |
142
- | PASSPHRASE | Passphrase used to create encryption key | String | ` MYPASSPHRASE` |
143
- | SECRETKEY_PATH | Location where encryption key (used to encrypt/decrypt credentials) is saved | String | ` your-path/Flowise/packages/server` |
123
+ | Variable | Description | Type | Default |
124
+ | --------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------ | ----------------------------------- | --- |
125
+ | PORT | The HTTP port Flowise runs on | Number | 3000 |
126
+ | FLOWISE_USERNAME | Username to login | String | |
127
+ | FLOWISE_PASSWORD | Password to login | String | |
128
+ | DEBUG | Print logs from components | Boolean | |
129
+ | LOG_PATH | Location where log files are stored | String | ` your-path/Flowise/logs` |
130
+ | LOG_LEVEL | Different levels of logs | Enum String: ` error` , ` info` , ` verbose` , ` debug` | ` info` |
131
+ | APIKEY_PATH | Location where api keys are saved | String | ` your-path/Flowise/packages/server` |
132
+ | TOOL_FUNCTION_BUILTIN_DEP | NodeJS built-in modules to be used for Tool Function | String | |
133
+ | TOOL_FUNCTION_EXTERNAL_DEP | External modules to be used for Tool Function | String | | |
134
+ | DATABASE_TYPE | Type of database to store the flowise data | Enum String: ` sqlite` , ` mysql` , ` postgres` | ` sqlite` |
135
+ | DATABASE_PATH | Location where database is saved (When DATABASE_TYPE is sqlite) | String | ` your-home-dir/.flowise` |
136
+ | DATABASE_HOST | Host URL or IP address (When DATABASE_TYPE is not sqlite) | String | |
137
+ | DATABASE_PORT | Database port (When DATABASE_TYPE is not sqlite) | String | |
138
+ | DATABASE_USER | Database username (When DATABASE_TYPE is not sqlite) | String | |
139
+ | DATABASE_PASSWORD | Database password (When DATABASE_TYPE is not sqlite) | String | |
140
+ | DATABASE_NAME | Database name (When DATABASE_TYPE is not sqlite) | String | |
141
+ | SECRETKEY_PATH | Location where encryption key (used to encrypt/decrypt credentials) is saved | String | ` your-path/Flowise/packages/server` |
142
+ | FLOWISE_SECRETKEY_OVERWRITE | Encryption key to be used instead of the key stored in SECRETKEY_PATH | String |
144
143
145
144
You can also specify the env variables when using ` npx` . For example:
146
145
0 commit comments