You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
# Makefile to build and deploy
|
|
|
|
.PHONY: prod
|
|
prod:
|
|
dune build @install --release
|
|
|
|
.PHONY: deploy
|
|
deploy: prod
|
|
rsync -rav -L -e ssh _build/install/default/share/geopub/ qfwfq:/srv/http/geopub.openengiadina.net/ --delete
|