From c6ecb4cc4ba4066d443520064ed3747965438919 Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Mon, 29 Mar 2021 19:48:59 +0700 Subject: [PATCH] Add mapper config for save to output --- examples/excel2json/README.md | 3 ++- examples/excel2json/data/mapper.json | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/examples/excel2json/README.md b/examples/excel2json/README.md index e64bb72..aff9367 100644 --- a/examples/excel2json/README.md +++ b/examples/excel2json/README.md @@ -42,7 +42,8 @@ docker run -v /home/sombochea/excel2json:/app/data -e APP_NAME="EXCEL 2 JSON" -e "configs": { "outputPath": "./data/outputs/exported", "outputName": "my_exported_data", - "sheetName": "Sheet1" + "sheetName": "Sheet1", + "saveToOutput": true } } ``` diff --git a/examples/excel2json/data/mapper.json b/examples/excel2json/data/mapper.json index 3e1d9e2..80ff8e5 100644 --- a/examples/excel2json/data/mapper.json +++ b/examples/excel2json/data/mapper.json @@ -12,6 +12,7 @@ "configs": { "outputPath": "./data/outputs/exported", "outputName": "my_exported_data", - "sheetName": "Sheet1" + "sheetName": "Sheet1", + "saveToOutput": true } }