(nodeData?: INodeData)
| 5 | } |
| 6 | |
| 7 | export function getDatabase(nodeData?: INodeData) { |
| 8 | return defaultChain(nodeData?.inputs?.database, process.env.POSTGRES_VECTORSTORE_DATABASE) |
| 9 | } |
| 10 | |
| 11 | export function getPort(nodeData?: INodeData) { |
| 12 | return defaultChain(nodeData?.inputs?.port, process.env.POSTGRES_VECTORSTORE_PORT, '5432') |
no test coverage detected