feat: add initial apps configuration file for RemoteTurtle components

This commit is contained in:
MayaTheShy
2026-03-22 15:55:49 -04:00
parent 5a4af6c986
commit b13905dade

29
etc/apps.db Normal file
View File

@@ -0,0 +1,29 @@
{
[ "rt_turtle_controller" ] = {
title = "Turtle Controller",
category = "RemoteTurtle",
run = "turtle.lua",
},
[ "rt_gps_host" ] = {
title = "GPS Host",
category = "RemoteTurtle",
run = "gpshost.lua",
},
[ "rt_web_bridge" ] = {
title = "Web Bridge",
category = "RemoteTurtle",
run = "webbridge.lua",
},
[ "rt_pocket_remote" ] = {
title = "Pocket Remote",
category = "RemoteTurtle",
run = "pocketremote.lua",
requires = { pocket = true },
},
[ "rt_pocket_gps" ] = {
title = "Pocket GPS",
category = "RemoteTurtle",
run = "pocketgps.lua",
requires = { pocket = true },
},
}