Skip to content

Commit

Permalink
Replace npm install + generate -> ./generate.sh in docs (airbytehq#4048)
Browse files Browse the repository at this point in the history
  • Loading branch information
TymoshokDmytro authored Jun 10, 2021
1 parent e26f813 commit d5d0c8b
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ This is a blazing fast guide to building an HTTP source connector. Think of it a

```bash
$ cd airbyte-integrations/connector-templates/generator # start from repo root
$ npm install
$ npm run generate
$ ./generate.sh
```

Select the `Python HTTP API Source` and name it `python-http-example`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ Airbyte provides a code generator which bootstraps the scaffolding for our conne

```bash
$ cd airbyte-integrations/connector-templates/generator # assumes you are starting from the root of the Airbyte project.
# Install NPM from https://www.npmjs.com/get-npm if you don't have it
$ npm install
$ npm run generate
$ ./generate.sh
```

Select the `Python HTTP API Source` template and then input the name of your connector. For this walk-through we will refer to our source as `python-http-example`. The finalized source code for this tutorial can be found [here](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-python-http-tutorial).
Expand Down
4 changes: 1 addition & 3 deletions airbyte-cdk/python/docs/tutorials/http_api_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ Airbyte provides a code generator which bootstraps the scaffolding for our conne

```bash
$ cd airbyte-integrations/connector-templates/generator # assumes you are starting from the root of the Airbyte project.
# Install NPM from https://www.npmjs.com/get-npm if you don't have it
$ npm install
$ npm run generate
$ ./generate.sh
```

Select the `Python HTTP CDK Source` template and then input the name of your connector. For this walk-through we will refer to our source as `python-http-example`. The finalized source code for this tutorial can be found [here](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-python-http-tutorial).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ Airbyte provides a code generator which bootstraps the scaffolding for our conne

```bash
$ cd airbyte-integrations/connector-templates/generator # assumes you are starting from the root of the Airbyte project.
# Install NPM from https://www.npmjs.com/get-npm if you don't have it
$ npm install
$ npm run generate
$ ./generate.sh
```

Select the `Python HTTP CDK Source` template and then input the name of your connector. For this walk-through we will refer to our source as `python-http-example`. The finalized source code for this tutorial can be found [here](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-python-http-tutorial).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ For the JDBC based sources the Code Generator maybe used to create a module's sk

```bash
$ cd airbyte-integrations/connector-templates/generator # start from repo root
$ npm install
$ npm run generate
In menu choose the "Java JDBC Source"
```
$ ./generate.sh
```

In menu choose the `"Java JDBC Source"`
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ This is a blazing fast guide to building an HTTP source connector. Think of it a

```bash
$ cd airbyte-integrations/connector-templates/generator # start from repo root
$ npm install
$ npm run generate
$ ./generate.sh
```

Select the `Python HTTP API Source` and name it `python-http-example`.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ Airbyte provides a code generator which bootstraps the scaffolding for our conne
```bash
$ cd airbyte-integrations/connector-templates/generator # assumes you are starting from the root of the Airbyte project.
# Install NPM from https://www.npmjs.com/get-npm if you don't have it
$ npm install
$ npm run generate
$ ./generate.sh
```

Select the `Python HTTP API Source` template and then input the name of your connector. For this walk-through we will refer to our source as `python-http-example`. The finalized source code for this tutorial can be found [here](https://github.com/airbytehq/airbyte/tree/master/airbyte-integrations/connectors/source-python-http-tutorial).
Expand Down
4 changes: 1 addition & 3 deletions docs/tutorials/tutorials/build-a-connector-the-hard-way.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,7 @@ Airbyte provides a code generator which bootstraps the scaffolding for our conne

```bash
$ cd airbyte-integrations/connector-templates/generator
# Install NPM from https://www.npmjs.com/get-npm if you don't have it
$ npm install
$ npm run generate
$ ./generate.sh
```

We'll select the `generic` template and call the connector `stock-ticker-api`:
Expand Down
4 changes: 1 addition & 3 deletions docs/tutorials/tutorials/building-a-python-source.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,7 @@ Airbyte provides a code generator which bootstraps the scaffolding for our conne

```bash
$ cd airbyte-integrations/connector-templates/generator # assumes you are starting from the root of the Airbyte project.
# Install NPM from https://www.npmjs.com/get-npm if you don't have it
$ npm install
$ npm run generate
$ ./generate.sh
```

Select the `python` template and then input the name of your connector. For this walk through we will refer to our source as `example-python`
Expand Down

0 comments on commit d5d0c8b

Please sign in to comment.