mirror of
https://github.com/status-im/spiff-arena.git
synced 2025-01-13 03:34:30 +00:00
963d62b323
* let us proof everything * proof and ventilate everything * restore removed content * add back in some headers * add back more headers * restore header * fix header * fix backend * restore two long files from main to avoid mangling * update edit_all for testing * fix docs * notes * more spacing --------- Co-authored-by: burnettk <burnettk@users.noreply.github.com>
32 lines
1.1 KiB
Markdown
32 lines
1.1 KiB
Markdown
# Connector Proxy
|
|
|
|
A connector-proxy is an application that is generally deployed alongside the frontend and backend.
|
|
Please see [Connector Proxy in 5 mins](https://github.com/sartography/spiff-arena/wiki/Connector-Proxy-in-5-mins).
|
|
|
|
```mermaid
|
|
graph TD
|
|
subgraph ConnectorProxy[Connector Proxy Application]
|
|
direction TB
|
|
ConnectorA
|
|
ConnectorB
|
|
end
|
|
|
|
subgraph ConnectorA[Connector A]
|
|
direction TB
|
|
CommandA1[Command C]
|
|
CommandA2[Command D]
|
|
end
|
|
|
|
subgraph ConnectorB[Connector B]
|
|
direction TB
|
|
CommandB1[Command E]
|
|
CommandB2[Command F]
|
|
end
|
|
|
|
```
|
|
|
|
Connector Proxies are containers for connectors.
|
|
Connectors are usually Python libraries that are included in connector proxy codebases, but they can also be embedded directly inside of connector proxies.
|
|
Our connector-proxy-demo includes a few connectors, including [connector-aws](https://github.com/sartography/connector-aws) and [connector-http](https://github.com/sartography/connector-http).
|
|
Connector-http can be used for many API interactions, but you can also [write your own connectors](/dev/how_to_build_a_connector).
|