16 lines
490 B
Makefile
16 lines
490 B
Makefile
|
default: run
|
||
|
|
||
|
core-plugins:
|
||
|
@if [ ! -d "pelican-plugins" ]; then git clone https://github.com/getpelican/pelican-plugins; fi
|
||
|
|
||
|
custom-plugins:
|
||
|
@if [ ! -d "plugins-custom" ]; then git clone https://git.vvvvvvaria.org/varia/plugins-custom; fi
|
||
|
|
||
|
dependencies:
|
||
|
@if [ ! -d ".venv" ]; then python3 -m venv .venv && .venv/bin/pip install -r requirements.txt; fi
|
||
|
|
||
|
run: core-plugins custom-plugins dependencies
|
||
|
@.venv/bin/pelican --autoreload
|
||
|
|
||
|
.PHONY: core-plugins custom-plugins dependencies run
|