mirror of
https://github.com/mfocko/blog.git
synced 2024-11-13 01:30:29 +01:00
14 lines
387 B
Makefile
14 lines
387 B
Makefile
dev:
|
|
URL=http://localhost BASE_URL=/ npm run start
|
|
|
|
deploy-aisa:
|
|
URL=https://fi.muni.cz BASE_URL=~xfocko/kb/ npm run build
|
|
rsync -avzrlpptv --delete build/ aisa:~/public_html/kb/
|
|
|
|
deploy-poincare:
|
|
URL=https://fi.mfocko.xyz BASE_URL=/ npm run build
|
|
rsync -avzrlpptv --delete build/ poincare:~/public_html/fi/
|
|
|
|
deploy: deploy-aisa deploy-poincare
|
|
|
|
.PHONY: deploy-aisa deploy-poincare
|