diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7576454 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# .PHONY: Declares phony targets, which are commands that don't produce a file with the same name. +.PHONY: install start build test clean + +# Install project dependencies +site: + npm install + npm run dev + +# Start the development server +site: + npm run dev + +# Build the project for production +build: + npm run build + +# Run project tests +test: + npm run test +