| Author | SHA1 | Message | Date |
|---|---|---|---|
|
|
57b78a5805 | Fix python api link and add broken link check | 1 year ago |
| @@ -343,7 +343,7 @@ jobs: | |||||
| sleep 10 | sleep 10 | ||||
| dora stop --name ci-c-test --grace-duration 5s | dora stop --name ci-c-test --grace-duration 5s | ||||
| dora destroy | dora destroy | ||||
| - name: "Test CLI (C++)" | - name: "Test CLI (C++)" | ||||
| timeout-minutes: 30 | timeout-minutes: 30 | ||||
| # fail-fast by using bash shell explictly | # fail-fast by using bash shell explictly | ||||
| @@ -414,6 +414,7 @@ jobs: | |||||
| runs-on: ubuntu-latest | runs-on: ubuntu-latest | ||||
| steps: | steps: | ||||
| - uses: actions/checkout@v2 | - uses: actions/checkout@v2 | ||||
| - uses: gaurav-nelson/github-action-markdown-link-check@v1 | |||||
| - uses: actions-rs/toolchain@v1 | - uses: actions-rs/toolchain@v1 | ||||
| with: | with: | ||||
| profile: minimal | profile: minimal | ||||
| @@ -5,7 +5,7 @@ | |||||
| <h2 align="center"> | <h2 align="center"> | ||||
| <a href="https://www.dora-rs.ai">Website</a> | <a href="https://www.dora-rs.ai">Website</a> | ||||
| | | | | ||||
| <a href="https://www.dora-rs.ai/docs/api/python-api">Python API</a> | |||||
| <a href="https://dora-rs.ai/python-api.html">Python API</a> | |||||
| - | - | ||||
| <a href="https://docs.rs/dora-node-api/latest/dora_node_api/">Rust API</a> | <a href="https://docs.rs/dora-node-api/latest/dora_node_api/">Rust API</a> | ||||
| | | | | ||||
| @@ -61,15 +61,14 @@ Each node defines its inputs and outputs to connect with other nodes. | |||||
| ```yaml | ```yaml | ||||
| nodes: | nodes: | ||||
| - id: webcam | - id: webcam | ||||
| custom: | |||||
| source: webcam.py | |||||
| inputs: | |||||
| tick: dora/timer/millis/50 | |||||
| outputs: | |||||
| - image | |||||
| path: webcam.py | |||||
| inputs: | |||||
| tick: dora/timer/millis/50 | |||||
| outputs: | |||||
| - image | |||||
| - id: object_detection | - id: object_detection | ||||
| custom: | |||||
| path: | |||||
| source: object_detection.py | source: object_detection.py | ||||
| inputs: | inputs: | ||||
| image: webcam/image | image: webcam/image | ||||