From bd4fd403c0fa3a044156671ede6559f43766e4df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Veikko=20Lintuj=C3=A4rvi?= Date: Wed, 29 Apr 2026 21:12:21 +0300 Subject: [PATCH] Add justfile Co-authored-by: Copilot --- justfile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 justfile 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