Skip to content
This repository has been archived by the owner on Jul 28, 2021. It is now read-only.

Commit

Permalink
improve makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkvist committed Jan 11, 2019
1 parent 81091c6 commit bddea70
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions makefile
Expand Up @@ -3,11 +3,14 @@ APP_NAME=terrassa
IMAGE_PORT=80
HOST_PORT=80
HUGO_SITE=exampleSite
HUGO_BASE_URL=https://danielkvist.github.io/terrassa/

build:
cd ./$(HUGO_SITE) && hugo
build-min:
cd ./$(HUGO_SITE) && hugo --minify
build-deploy:
cd ./$(HUGO_SITE) && hugo --minify --baseURL="$(HUGO_BASE_URL)"
server:
cd ./$(HUGO_SITE) && hugo server -w
server-draft:
Expand Down

0 comments on commit bddea70

Please sign in to comment.