24 lines
468 B
Markdown
24 lines
468 B
Markdown
# cli
|
|
|
|
* Install dependencies and build:
|
|
|
|
```bash
|
|
yarn && yarn build
|
|
```
|
|
|
|
* Create required env configuration:
|
|
|
|
```bash
|
|
# Update the values as required
|
|
cp .env.example .env
|
|
```
|
|
|
|
* Map subscribers to onboarded participants:
|
|
|
|
```bash
|
|
yarn map-subscribers-to-participants --subscribersCsv <subscribers-csv-file> --output <output-csv-file>
|
|
|
|
# Example:
|
|
# yarn map-subscribers-to-participants --subscribersCsv subscribers.csv --output result.csv
|
|
```
|