[skip ci] add justfile

This commit is contained in:
Aine 2024-09-05 09:50:06 +03:00
parent eff17a0929
commit fb1a04971b
No known key found for this signature in database
GPG key ID: 34969C908CCA2804

15
justfile Normal file
View file

@ -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