-
-
Notifications
You must be signed in to change notification settings - Fork 17k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document env variables in nodes directories
- Loading branch information
Showing
4 changed files
with
38 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
packages/components/nodes/recordmanager/PostgresRecordManager/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Postgres Record Manager | ||
|
||
Postgres Record Manager integration for Flowise | ||
|
||
## 🌱 Env Variables | ||
|
||
| Variable | Description | Type | Default | | ||
| ---------------------------- | ----------------------------------------------------------------------------------------------- | ------------------------------------------------ | ----------------------------------- | | ||
| POSTGRES_RECORDMANAGER_HOST | Default `host` for Postgres Record Manager | String | | | ||
| POSTGRES_RECORDMANAGER_PORT | Default `port` for Postgres Record Manager | Number | 5432 | | ||
| POSTGRES_RECORDMANAGER_USER | Default `user` for Postgres Record Manager | String | | | ||
| POSTGRES_RECORDMANAGER_PASSWORD | Default `password` for Postgres Record Manager | String | | | ||
| POSTGRES_RECORDMANAGER_DATABASE | Default `database` for Postgres Record Manager | String | | | ||
| POSTGRES_RECORDMANAGER_TABLE_NAME | Default `tableName` for Postgres Record Manager | String | upsertion_records | | ||
|
||
## License | ||
|
||
Source code in this repository is made available under the [Apache License Version 2.0](https://github.com/FlowiseAI/Flowise/blob/master/LICENSE.md). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Postgres Vector Store | ||
|
||
Postgres Vector Store integration for Flowise | ||
|
||
## 🌱 Env Variables | ||
|
||
| Variable | Description | Type | Default | | ||
| ---------------------------- | ----------------------------------------------------------------------------------------------- | ------------------------------------------------ | ----------------------------------- | | ||
| POSTGRES_VECTORSTORE_HOST | Default `host` for Postgres Vector Store | String | | | ||
| POSTGRES_VECTORSTORE_PORT | Default `port` for Postgres Vector Store | Number | 5432 | | ||
| POSTGRES_VECTORSTORE_USER | Default `user` for Postgres Vector Store | String | | | ||
| POSTGRES_VECTORSTORE_PASSWORD | Default `password` for Postgres Vector Store | String | | | ||
| POSTGRES_VECTORSTORE_DATABASE | Default `database` for Postgres Vector Store | String | | | ||
| POSTGRES_VECTORSTORE_TABLE_NAME | Default `tableName` for Postgres Vector Store | String | documents | | ||
| POSTGRES_VECTORSTORE_CONTENT_COLUMN_NAME | Default `contentColumnName` for Postgres Vector Store | String | pageContent | | ||
|
||
## License | ||
|
||
Source code in this repository is made available under the [Apache License Version 2.0](https://github.com/FlowiseAI/Flowise/blob/master/LICENSE.md). |