d92732109f
All checks were successful
continuous-integration/drone/push Build is passing
See ruangrupa/living-room#17.
21 lines
567 B
Makefile
21 lines
567 B
Makefile
DEFAULT: serve
|
|
|
|
serve:
|
|
@hugo serve --watch
|
|
|
|
gen:
|
|
@CALENDAR_URL="https://cloud.lumbung.space/remote.php/dav/public-calendars/WbnHM8YdCkKT6bcT?export"; \
|
|
OUTPUT_DIR=content/calendar; \
|
|
lumbunglib-cal && \
|
|
OUTPUT_DIR=content/video lumbunglib-vid
|
|
|
|
push-hugo:
|
|
@docker build -t decentral1se/beta.lumbung.space -f Dockerfile.hugo . && \
|
|
docker push decentral1se/beta.lumbung.space
|
|
|
|
push-scripts:
|
|
@docker build -t decentral1se/beta.lumbung.space-scripts -f Dockerfile.scripts . && \
|
|
docker push decentral1se/beta.lumbung.space-scripts
|
|
|
|
.PHONY: serve gen push-hugo
|