16 lines
400 B
Makefile
16 lines
400 B
Makefile
default: run
|
|
|
|
core-plugins:
|
|
@if [ ! -d "pelican-plugins" ]; then git clone https://github.com/getpelican/pelican-plugins; fi
|
|
|
|
dependencies:
|
|
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
|
|
|
|
run: core-plugins dependencies
|
|
@.venv/bin/pelican --autoreload
|
|
|
|
publish:
|
|
@.venv/bin/pelican -o /var/www/html/
|
|
|
|
.PHONY: core-plugins dependencies run publish
|