28 lines
No EOL
663 B
TypeScript
28 lines
No EOL
663 B
TypeScript
import { reactive } from "vue";
|
|
|
|
export const settings = reactive({
|
|
ignoreCache: true,
|
|
//Leave empty to scan all interfaces
|
|
//or change item to "disabled" to disable interface scanning
|
|
interfaces_to_scan:[
|
|
"eno0",
|
|
"virtbr0"
|
|
],
|
|
enable_qemu_controls: true,
|
|
qemu_vms: [
|
|
{
|
|
name: "Gameserver",
|
|
os: "Ubuntu 24.04"
|
|
},
|
|
{
|
|
name: "Ubuntu_VM1",
|
|
os: "Ubuntu 24.04"
|
|
},
|
|
],
|
|
enable_services: true,
|
|
systemctl_services:[
|
|
"libvirt",
|
|
"frp"
|
|
],
|
|
password_hash: "$2b$10$cdGQ1EqJxtTFe.E9ifZ.0O2inml3sEcLaWFyK9EdmCelmZ2l2Ez8e"
|
|
}); |