dupuis
v1.0.31
Published
An alchemy harness for writing transformations
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-demoThen enter your directory
cd alchemy-data-platform-demoCreate a new package with
npm initYou can hit enter through all the options, they do not matter.
Install dupuis package
yarn add dupuisInitialize the template
yarn dupuis-initOpen package.json and change the package name to whatever you want. This will be the name of your pipeline.
Install dependencies
yarnCreate a file called .env
touch .envAdd 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_HEREOpen /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 devClick on the provided link or copy-paste it into a browser window.
Continue the demo live!
