diff --git a/README.md b/README.md index 9abd2db..23d32e4 100644 --- a/README.md +++ b/README.md @@ -27,3 +27,9 @@ npm run lint ### Customize configuration See [Configuration Reference](https://cli.vuejs.org/config/). + +### Deployment +``` +make publish +``` +Don't forget to uncomment the vue.config.js lines! diff --git a/makefile b/makefile new file mode 100644 index 0000000..1a42eca --- /dev/null +++ b/makefile @@ -0,0 +1,12 @@ +DEST := /var/www/food.alicestrete.me +REMOTE := kstraat +RSYNC := rsync -chavzP --rsync-path="sudo rsync" +SRC := dist/* +SSH := ssh -t +BUILD := npm run build + +build: + $(BUILD) + +publish: build + $(RSYNC) $(SRC) $(REMOTE):$(DEST) diff --git a/src/components/SplashPage.vue b/src/components/SplashPage.vue index 8364aff..371d4cc 100644 --- a/src/components/SplashPage.vue +++ b/src/components/SplashPage.vue @@ -3,9 +3,7 @@ @import url('https://fonts.googleapis.com/css?family=Inconsolata&display=swap'); @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap'); -* { - border: 1px solid black; -} + h3 { margin-top: 40px; font-family: 'Open Sans', sans-serif;