Add makefile

This commit is contained in:
2025-02-15 00:39:51 -08:00
parent 91bc10c395
commit 9c3a1d84d1
2 changed files with 9 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
build/
node_modules/ node_modules/
package-lock.json package-lock.json

8
Makefile Normal file
View File

@@ -0,0 +1,8 @@
.PHONY: build
build:
npm install
npm run build
.PHONY: run
run:
npm run start