From 5bad3872b6db935699e0c0a20128136d326ba8fb Mon Sep 17 00:00:00 2001 From: Brandon Dyck Date: Sun, 9 Jun 2024 18:01:15 -0600 Subject: [PATCH] Hello world --- .gitignore | 1 + Makefile | 7 +++++++ src/.init.lua | 1 + src/index.html | 1 + 4 files changed, 10 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 src/.init.lua create mode 100644 src/index.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..67b7cf6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +redbean*.com diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..61b368c --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: run +run: redbean/redbean-2.2.com + redbean/redbean-2.2.com -D src + +redbean/redbean-2.2.com: + wget --directory-prefix redbean https://redbean.dev/redbean-2.2.com + chmod a+x redbean/redbean-2.2.com diff --git a/src/.init.lua b/src/.init.lua new file mode 100644 index 0000000..4e09522 --- /dev/null +++ b/src/.init.lua @@ -0,0 +1 @@ +LaunchBrowser() diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..abb3424 --- /dev/null +++ b/src/index.html @@ -0,0 +1 @@ +

It works!

\ No newline at end of file