initial commit

This commit is contained in:
2025-08-09 18:17:23 -04:00
commit 49c870d0ea
12 changed files with 538 additions and 0 deletions

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
all: Makefile dist/index.html static
dist/index.html: build.py Makefile index.html res/arrow-path.txt res/i18n.yml
mkdir -p dist
python3 build.py
STATIC_FILES := $(wildcard vendor/*) res/ln-s.png res/ln-s.webp
.PHONY: static
static: $(STATIC_FILES)
mkdir -p dist/vendor
cp -r vendor/* dist/vendor/
cp res/ln-s.png res/ln-s.webp dist/
.PHONY: clean
clean:
rm -rf dist/