if (argv.zipPath && argv.configPath) {
        const zipFile = fs.createReadStream(argv.zipPath);
        const configXml = fs.readFileSync(argv.configPath, "utf8");
        createProjectWithConfig(zipFile, configXml)
        .then((project) => {