mirror of
https://github.com/sartography/spiff-arena.git
synced 2025-02-12 01:16:58 +00:00
584be1df6a
* kill tags * big four * move doc script * move dev to explain * move images to root because it is better * move scrit * script * move out * moved building_diagrams * couple devops things * docs * move exe * unit test * articlers * wip * path * devops * perm * deploy * stuff * everything * broken links * wip --------- Co-authored-by: burnettk <burnettk@users.noreply.github.com>
36 lines
1.2 KiB
Markdown
36 lines
1.2 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](how_to_build_a_connector).
|
|
|
|
```{tags} how_to_guide, dev_docs
|
|
|
|
```
|