-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
||
|
@@ -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://[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 | ||
|
@@ -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' | ||
|