From 51af433f9865f4e04c29d246b09d1471e37aa3aa Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sat, 8 Apr 2023 21:31:11 -0300 Subject: [PATCH] add justfile with build and deploy instructions. --- justfile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..b333833 --- /dev/null +++ b/justfile @@ -0,0 +1,7 @@ +build: + yarn run build + +deploy: + wrangler pages publish --project-name metadata-contacts-relays dist/ + +build-and-deploy: build deploy