Makefile fixes, part1 updates

This commit is contained in:
Bastian de Byl
2020-04-20 15:29:07 -04:00
parent 0f2858e63e
commit 11ae25cf19
2 changed files with 6 additions and 1 deletions

View File

@@ -45,6 +45,10 @@ static-push:
aws s3 sync --acl "public-read" --sse "AES256" ${STATIC_DIR}/ s3://${STATIC_BUCKET}
.PHONY: static-push
css-push:
aws s3 cp --acl "public-read" --sse "AES256" public/dist/style.css s3://${WEB_BUCKET}/dist/style.css
.PHONY: css-push
run: static-pull
-$(DOCKER_RUN) -it ${DOCKER_PORT} ${HUGO_IMAGE} -D server --bind=0.0.0.0
.PHONY: run