ansible.l3d.space/Makefile

62 lines
2 KiB
Makefile
Raw Normal View History

2023-01-31 23:34:57 +01:00
LEKTOR_SERVER_FLAGS=-h 127.0.0.1
# minify javascript assets, compile scss assets
LEKTOR_PLUGIN_FLAGS=-f scss -f pretifyhtml
LEKTOR_DEPLOY_FLAGS=
all: build
.ONESHELL:
install:
if hash apt-get 2>/dev/null; then
2023-03-21 19:39:23 +01:00
apt-get update -qq >/dev/null && apt-get install -qq apt-utils imagemagick python3-pip python3-setuptools gcc git-lfs python3-venv
2023-01-31 23:34:57 +01:00
elif hash pacman 2>/dev/null; then
2023-03-21 19:39:23 +01:00
pacman -Syu imagemagick python-pip glibc lib32-glibc gcc git-lfs python3-venv --noconfirm
2023-01-31 23:34:57 +01:00
elif hash dnf 2>/dev/null; then
dnf install -y ImageMagick python3-pip gcc git-lfs
else
2023-03-21 19:39:23 +01:00
echo -e "Please install Imagemagick, python3-pip git-lfs, python3-venv and gcc"
2023-01-31 23:34:57 +01:00
fi
2023-03-21 19:39:23 +01:00
pip3 install wheel --upgrade
pip3 install lektor --upgrade
2023-01-31 23:34:57 +01:00
build:
2023-03-21 19:39:23 +01:00
if [[ "$VIRTUAL_ENV" != "" ]]; then
source lektor/bin/activate || python -m venv lektor && source lektor/bin/activate
fi
2023-01-31 23:34:57 +01:00
if python3 -m lektor --version 2>/dev/null; then
python3 -m lektor build $(LEKTOR_PLUGIN_FLAGS)
else
lektor build $(LEKTOR_PLUGIN_FLAGS)
fi
server:
2023-03-21 19:39:23 +01:00
if [[ "$VIRTUAL_ENV" != "" ]]; then
source lektor/bin/activate || python -m venv lektor && source lektor/bin/activate
fi
2023-01-31 23:34:57 +01:00
if python3 -m lektor --version 2>/dev/null; then
python3 -m lektor server $(LEKTOR_SERVER_FLAGS) $(LEKTOR_PLUGIN_FLAGS)
else
lektor server $(LEKTOR_SERVER_FLAGS) $(LEKTOR_PLUGIN_FLAGS)
fi
2023-03-07 22:10:20 +01:00
dev:
2023-03-21 19:39:23 +01:00
if [[ "$VIRTUAL_ENV" != "" ]]; then
source lektor/bin/activate || python -m venv lektor && source lektor/bin/activate
fi
lektor plugin flush-cache
2023-03-07 22:10:20 +01:00
lektor clean --yes
if python3 -m lektor --version 2>/dev/null; then
python3 -m lektor server $(LEKTOR_SERVER_FLAGS) $(LEKTOR_PLUGIN_FLAGS)
else
lektor server $(LEKTOR_SERVER_FLAGS) $(LEKTOR_PLUGIN_FLAGS)
fi
2023-01-31 23:34:57 +01:00
deploy:
2023-03-21 19:39:23 +01:00
if [[ "$VIRTUAL_ENV" != "" ]]; then
source lektor/bin/activate || python -m venv lektor && source lektor/bin/activate
fi
2023-01-31 23:34:57 +01:00
lektor clean --yes
lektor plugin flush-cache
lektor build $(LEKTOR_PLUGIN_FLAGS) $(LEKTOR_DEPLOY_FLAGS)
lektor deploy $(LEKTOR_PLUGIN_FLAGS) $(LEKTOR_DEPLOY_FLAGS)