From aa1d76f9c59c311e247ef16973bbc4e8883732ee Mon Sep 17 00:00:00 2001 From: Ana Konrad Date: Wed, 8 Nov 2023 10:08:12 +0100 Subject: [PATCH] Fix numbering --- docs/triply-etl/getting-started/index.md | 28 ++++++++++++------------ 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/triply-etl/getting-started/index.md b/docs/triply-etl/getting-started/index.md index 130adc4b..aec07e7c 100644 --- a/docs/triply-etl/getting-started/index.md +++ b/docs/triply-etl/getting-started/index.md @@ -80,7 +80,7 @@ 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 @@ -88,7 +88,7 @@ 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 @@ -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] @@ -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 @@ -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. @@ -156,25 +156,25 @@ Perform the following steps to use the TriplyETL Runner: git clone ssh://git@git.triply.cc: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 @@ -200,7 +200,7 @@ 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/ @@ -208,15 +208,15 @@ Perform the following steps to use the TriplyETL Library: //git.triply.cc/api/v4/packages/npm/:_authToken={LICENSE_KEY} ``` - Replace `{LICENSE_KEY}` with your TriplyETL License Key. Contact [support@triply.cc](mailto:support@triply.cc) if you do not have such a license key yet. +Replace `{LICENSE_KEY}` with your TriplyETL License Key. Contact [support@triply.cc](mailto:support@triply.cc) 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'