mirror of
https://github.com/etkecc/synapse-admin.git
synced 2025-02-16 11:29:48 +03:00
[skip ci] add justfile
This commit is contained in:
parent
eff17a0929
commit
fb1a04971b
1 changed files with 15 additions and 0 deletions
15
justfile
Normal file
15
justfile
Normal 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
|
Loading…
Add table
Reference in a new issue