Skip to content

Commit

Permalink
Fix numbering
Browse files Browse the repository at this point in the history
  • Loading branch information
anakonrad committed Nov 8, 2023
1 parent ffe6c75 commit aa1d76f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions docs/triply-etl/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,15 +80,15 @@ In order to use TriplyETL Generator, you must have:

Perform the following steps to use the TriplyETL Generator:

1. Run the following command:
Run the following command:

```sh
npx triply-etl-generator
```

If you use TriplyETL Generator for the first time, this command automatically downloads and installs the latest version on your computer. If you have used TriplyETL Generator in the past, this command automatically updates your installation to the latest version.

2. When asked, enter the following information:
When asked, enter the following information:

a. TriplyETL License Key

Expand All @@ -106,7 +106,7 @@ npx triply-etl-generator

h. TriplyDB password

Here is an example of a possible run:
Here is an example of a possible run:

```sh
? TriplyETL License Key: [hidden]
Expand All @@ -120,13 +120,13 @@ npx triply-etl-generator
🏁 Your project my-etl is ready for use in my-etl.
```
3. Go to the target folder that you have specified:
Go to the target folder that you have specified:
```sh
cd my-etl
```
4. You can now use the [TriplyETL Runner](../cli#triplyetl-runner) to run the ETL:
You can now use the [TriplyETL Runner](../cli#triplyetl-runner) to run the ETL:
```sh
npx etl
Expand All @@ -146,7 +146,7 @@ In order to use TriplyETL Runner, you must have:
Perform the following steps to use the TriplyETL Runner:
1. Create a local copy of an existing ETL project.
Create a local copy of an existing ETL project.
If you do not have access to an existing TriplyETL project yet, use the [TriplyETL Generator](#triplyetl-generator) to create a new one.
Expand All @@ -156,25 +156,25 @@ Perform the following steps to use the TriplyETL Runner:
git clone ssh://[email protected]:10072/customers/my-org/my-project.git
```
2. Once you have created a local copy of an existing ETL project, go into the corresponding directory:
Once you have created a local copy of an existing ETL project, go into the corresponding directory:
```sh
cd my-project
```
3. Install the dependencies:
Install the dependencies:
```sh
npm i
```
4. Transpile the TypeScript files into JavaScript:
Transpile the TypeScript files into JavaScript:
```sh
npm run build
```
5. You can now use the TriplyETL Runner:
You can now use the TriplyETL Runner:
```sh
npx etl
Expand All @@ -200,23 +200,23 @@ In order to use the TriplyETL Library, you must have:
Perform the following steps to use the TriplyETL Library:
1. Open the file `.npmrc` in your text editor, or create the file if it does not yet exist. Add the following content:
Open the file `.npmrc` in your text editor, or create the file if it does not yet exist. Add the following content:
```
@triplydb:registry=https://git.triply.cc/api/v4/packages/npm/
@triplyetl:registry=https://git.triply.cc/api/v4/packages/npm/
//git.triply.cc/api/v4/packages/npm/:_authToken={LICENSE_KEY}
```
Replace `{LICENSE_KEY}` with your TriplyETL License Key. Contact [[email protected]](mailto:[email protected]) if you do not have such a license key yet.
Replace `{LICENSE_KEY}` with your TriplyETL License Key. Contact [[email protected]](mailto:[email protected]) if you do not have such a license key yet.
2. Run the following command to add the TriplyETL dependency to your `package.json` file:
Run the following command to add the TriplyETL dependency to your `package.json` file:
```sh
npm i @triplyetl/etl
```
3. Open one of the TypeScript files in your software project. When you add the following line to the top of your file, it should be recognized by your TypeScript editor:
Open one of the TypeScript files in your software project. When you add the following line to the top of your file, it should be recognized by your TypeScript editor:
```ts
import { sdo } from '@triplyetl/etl/vocab'
Expand Down

0 comments on commit aa1d76f

Please sign in to comment.