You've already forked pedini.dev
- Add risotto theme as submodule - Update hugo.yaml with new theme configuration - Adjust menu URLs to be absolute paths - Simplify makefile by removing redundant prep steps - Update copyright notice and author info - Remove old theme-specific CSP settings
16 lines
251 B
Makefile
16 lines
251 B
Makefile
#!make
|
|
|
|
default: build
|
|
|
|
prep:
|
|
git submodule foreach --recursive bash -c "git checkout \$$(git remote show origin | grep HEAD | sed 's/.*\: //'); git pull"
|
|
|
|
build:
|
|
/usr/bin/env bash version.sh
|
|
|
|
deploy:
|
|
/usr/bin/env bash deploy.sh
|
|
|
|
run:
|
|
hugo server
|