mirror of
https://github.com/etkecc/synapse-admin.git
synced 2024-11-21 15:25:22 +03:00
16 lines
307 B
Makefile
16 lines
307 B
Makefile
|
# 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
|