Files
fabula-ultima-html/Justfile

15 lines
362 B
Makefile

user := "admin"
host := "chimaera.malzahn.lan"
www-root := "/home/admin/caddy/public_html/fabula"
serve:
npm run dev
deploy: build
scp dist/index.html {{ user }}@{{ host }}:{{ www-root }}/index.html
scp dist/bundle.*.js {{ user }}@{{ host }}:{{ www-root }}/
scp dist/styles.*.css {{ user }}@{{ host }}:{{ www-root }}/
build:
npm run build