This commit is contained in:
2025-07-14 18:43:59 -07:00
commit 91ebc8eebc
13 changed files with 2577 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONY: all dev fmt lint install
all: dev
dev:
npm run dev
fmt:
npm run format
lint:
npm run lint
install:
npm install