@lime.it/blip-core
Version:
Blip cli basic abstractions and functionalities
38 lines (37 loc) • 1.29 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.shareGuestPathFlag = exports.shareHostPathFlag = exports.ramSizeMBFlag = exports.diskSizeMBFlag = exports.cpuCountFlag = exports.machineNameFlag = void 0;
var parser_1 = require("@oclif/parser");
exports.machineNameFlag = parser_1.flags.string({
name: 'machine-name',
required: true,
description: 'Name of the workspace machine.'
});
exports.cpuCountFlag = parser_1.flags.integer({
name: 'cpu-count',
required: false,
default: 1,
description: 'Number of cpu that a machine will have.'
});
exports.diskSizeMBFlag = parser_1.flags.integer({
name: 'disk-size',
required: false,
default: 20 * 1024,
description: 'Disk size in MB that a machine will have.'
});
exports.ramSizeMBFlag = parser_1.flags.integer({
name: 'ram-size',
required: false,
default: 2 * 1024,
description: 'Ram size in MB that a machine will have.'
});
exports.shareHostPathFlag = parser_1.flags.string({
name: 'share-host-path',
required: true,
description: 'Path of the shared folder on the host.'
});
exports.shareGuestPathFlag = parser_1.flags.string({
name: 'share-guest-path',
required: true,
description: 'Path of the shared folder on the guest.'
});