github.com/Azure/aad-pod-identity@v1.8.17/website/Makefile (about)

     1  bootstrap:
     2  	git submodule update --init --recursive
     3  	npm i
     4  
     5  serve: bootstrap
     6  	hugo server \
     7  		--buildDrafts \
     8  		--buildFuture \
     9  		--disableFastRender
    10  
    11  production-build: bootstrap
    12  	hugo --minify
    13  
    14  preview-build: bootstrap
    15  	hugo \
    16  		--baseURL $(DEPLOY_PRIME_URL) \
    17  		--buildDrafts \
    18  		--buildFuture \
    19  		--minify