step 2 : try build

This commit is contained in:
sindhu
2024-07-25 12:38:41 +07:00
parent 84607a40db
commit 804f012b82
13 changed files with 293 additions and 44 deletions

15
build/config/config.js Normal file
View File

@@ -0,0 +1,15 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const fs_1 = require("fs");
const j_config = JSON.parse((0, fs_1.readFileSync)("./config-etl-tat.json").toString());
const config = {
base_url: j_config["base_url"],
schedule: j_config["schedule"],
delay: j_config["delay"],
row_per_batch: j_config["row_per_batch"],
// kode, date, target
// kode: j_config["kode"],
// date: j_config["date"],
// target: j_config["target"]
};
exports.default = config;