diff --git a/Makefile b/Makefile index 4ead78a..30f696f 100644 --- a/Makefile +++ b/Makefile @@ -4,3 +4,6 @@ build: clean: rm -rf public rm -v $(shell find . -iname "*~") +deploy: + hugo + rsync -vlcr --delete-after ./public/* mary@core.sweetandsourcherries.com:/home/mary/deliciousium/public/ diff --git a/config.toml b/config.toml index 985fdf5..ce86149 100644 --- a/config.toml +++ b/config.toml @@ -6,3 +6,6 @@ copyright = "deliciousium - All rights reserved" [params] logo = "/images/deliciousium.png" + +[outputs] + home = ['HTML', 'JSON', 'RSS']