getDbConfig()

in src/app/dbUtils.js [48:59]


    getDbConfig() {
        console.log("getDbConfig()");
        return new Promise((resolve, reject) => {
            resolve({
                host: host,
                user: "admin",
                password: "Corp123!",
                database: "unicorn_customization",
                multipleStatements: true
            });
        });
    };