Skip to content

Commit 84cf592

Browse files
authored
doc: remove Node requirements on config based getting started tutorial (#35436)
1 parent 534a640 commit 84cf592

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

docs/connector-development/config-based/tutorial/0-getting-started.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ This can be done by signing up for the Free tier plan on [Exchange Rates Data AP
4444
- Python >= 3.9
4545
- [Poetry](https://python-poetry.org/)
4646
- Docker must be running
47-
- NodeJS
4847
- [`airbyte-ci`](https://github.com/airbytehq/airbyte/blob/master/airbyte-ci/connectors/pipelines/README.md#L1) CLI
4948

5049
## Next Steps

docs/connector-development/tutorials/cdk-speedrun.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,17 +117,17 @@ cd ..
117117
mkdir sample_files
118118
echo '{"pokemon_name": "pikachu"}' > sample_files/config.json
119119
echo '{"pokemon_name": "chikapu"}' > sample_files/invalid_config.json
120-
python main.py check --config sample_files/config.json
121-
python main.py check --config sample_files/invalid_config.json
120+
poetry run source-python-http-example check --config sample_files/config.json
121+
poetry run source-python-http-example check --config sample_files/invalid_config.json
122122
```
123123

124124
Expected output:
125125

126-
```text
127-
> python main.py check --config sample_files/config.json
126+
```bash
127+
> poetry run source-python-http-example check --config sample_files/config.json
128128
{"type": "CONNECTION_STATUS", "connectionStatus": {"status": "SUCCEEDED"}}
129129
130-
> python main.py check --config sample_files/invalid_config.json
130+
> poetry run source-python-http-example check --config sample_files/invalid_config.json
131131
{"type": "CONNECTION_STATUS", "connectionStatus": {"status": "FAILED", "message": "'Input Pokemon chikapu is invalid. Please check your spelling our input a valid Pokemon.'"}}
132132
```
133133

0 commit comments

Comments
 (0)