diff options
| -rw-r--r-- | Makefile | 3 | ||||
| -rw-r--r-- | hugo.toml | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -3,6 +3,9 @@ build: static/resume.png publish: build rsync -rz --delete public/ samanthony.xyz:/var/www/htdocs/samanthony.xyz/ + ipfs add -r public \ + | tail -n1 | awk '{print $$2}' \ + | xargs -I{} ssh samanthony.xyz "IPFS_PATH=/var/kubo ipfs pin add -r {}" serve: hugo serve -DEF @@ -3,6 +3,7 @@ languageCode = 'en-us' title = 'Sam Anthony' theme = 'aoidh' enableGitInfo = true +relativeURLs = true [params] [params.author] |