Created the software.jsx

This commit is contained in:
Mathias Wagner 2023-06-01 19:50:17 +02:00
parent df79398eca
commit 31410525bf
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,14 @@
import MySpeedImage from "./images/myspeed.webp";
import {faBox, faFolder} from "@fortawesome/free-solid-svg-icons";
export default [
{
name: "MySpeed",
icon: MySpeedImage,
configuration: [
{type: "input", id: "folder", text: "Ort", icon: faFolder, value: "/opt/myspeed"},
{type: "select", id: "environment", text: "Umgebung", icon: faBox, options: ["Stabil", "Entwicklung"],
value: "Stabil"}
]
}
];