From fb1a04971bf5515bac19b5244fb4ff0f3fb9d395 Mon Sep 17 00:00:00 2001 From: Aine Date: Thu, 5 Sep 2024 09:50:06 +0300 Subject: [PATCH] [skip ci] add justfile --- justfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 justfile diff --git a/justfile b/justfile new file mode 100644 index 0000000..a1a6e24 --- /dev/null +++ b/justfile @@ -0,0 +1,15 @@ +# Shows help +default: + @just --list --justfile {{ justfile() }} + +# build the app +build: __install + @yarn run build --base=./ + +# run the app in a production mode +run: build + @python -m http.server -d dist 1313 + +# install the project +__install: + @yarn install --immutable --network-timeout=300000