diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2c6634e --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.containerizer \ No newline at end of file diff --git a/Software/build.lua b/Software/build.lua new file mode 100644 index 0000000..2350085 --- /dev/null +++ b/Software/build.lua @@ -0,0 +1,25 @@ +--Default build.lua Script + +local appid = "org.ruffles.software" + +local project_name = "Software" + + +local package_data = build.optimize(build.package("src")) + +build.writePackage(package_data,"build/"..appid) + +local meta = { + perms = { + repo = true, + network = false, + app = true, + http = false, + }, + author = "Ruffles", + name = project_name, + appid = appid, +} + +build.writeMeta(meta,"build/"..project_name..".meta") +build.merge("build/"..appid,"build/"..project_name..".meta","build/"..project_name..".app") diff --git a/Software/src/startup.lua b/Software/src/startup.lua new file mode 100644 index 0000000..4648e70 --- /dev/null +++ b/Software/src/startup.lua @@ -0,0 +1 @@ +print("Hello, World!") \ No newline at end of file