dupuis
v1.0.31
Published
An alchemy harness for writing transformations
Downloads
11
Readme
You are going to create a repository to write your pipeline code. Follow these steps to get started:
Create a new directory for your repository, e.g.
mkdir alchemy-data-platform-demo
Then enter your directory
cd alchemy-data-platform-demo
Create a new package with
npm init
You can hit enter through all the options, they do not matter.
Install dupuis package
yarn add dupuis
Initialize the template
yarn dupuis-init
Open package.json and change the package name to whatever you want. This will be the name of your pipeline.
Install dependencies
yarn
Create a file called .env
touch .env
Add your ngrok token to the .env file like so. If you don’t have an ngrok token let us know and we can provide one.
NGROK_AUTHTOKEN=YOUR_NGROK_TOKEN_HERE
Open /scripts/ngrok.ts and replace DUPUIS_URL_HERE with a URL that you will get on the demo call.
const ngrok = new Ngrok("DUPUIS_URL_HERE");
Start the demo app
yarn dev
Click on the provided link or copy-paste it into a browser window.
Continue the demo live!