A simple, powerful CLI tool to spin up OpenIndiana virtual machines with QEMU
at main 228 B view raw
1export const CONFIG_DIR = `${Deno.env.get("HOME")}/.openindiana-up`; 2export const DB_PATH = `${CONFIG_DIR}/state.sqlite`; 3export const LOGS_DIR: string = `${CONFIG_DIR}/logs`; 4export const EMPTY_DISK_THRESHOLD_KB: number = 100;