diff --git a/justfile b/justfile new file mode 100644 index 0000000..83ceb10 --- /dev/null +++ b/justfile @@ -0,0 +1,22 @@ +set shell := ["bash", "-eu", "-o", "pipefail", "-c"] + +default: + @just --list + +install: + npm install + +dev: + npm run dev + +build: + npm run build + +start: + npm run start + +lint: + npm run lint + +deploy: + bash scripts/deploy.sh