diff --git a/.gitignore b/.gitignore index b8ffe08..2643ef4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +build/ node_modules/ package-lock.json diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5ff9a3c --- /dev/null +++ b/Makefile @@ -0,0 +1,8 @@ +.PHONY: build +build: + npm install + npm run build + +.PHONY: run +run: + npm run start \ No newline at end of file