diff --git a/etc/apps.db b/etc/apps.db new file mode 100644 index 0000000..fb47216 --- /dev/null +++ b/etc/apps.db @@ -0,0 +1,33 @@ +{ + [ "im_inventory_manager" ] = { + title = "Inventory Manager", + category = "Inventory", + run = "inventoryManager.lua", + }, + [ "im_inventory_client" ] = { + title = "Inventory Display", + category = "Inventory", + run = "inventoryClient.lua", + }, + [ "im_crafting_turtle" ] = { + title = "Crafting Turtle", + category = "Inventory", + run = "craftingTurtle.lua", + requires = { turtle = true }, + }, + [ "im_dropper_controller" ] = { + title = "Dropper Controller", + category = "Inventory", + run = "dropperController.lua", + }, + [ "im_web_bridge" ] = { + title = "Inventory Web Bridge", + category = "Inventory", + run = "inventoryWebBridge.lua", + }, + [ "im_list_devices" ] = { + title = "List Devices", + category = "Inventory", + run = "listDevicesByType.lua", + }, +}