webseite/Makefile

70 lines
1.9 KiB
Makefile
Raw Normal View History

2019-02-12 17:45:44 +01:00
LEKTOR_SERVER_FLAGS=-h 127.0.0.1
2019-09-09 21:17:33 +02:00
# minify javascript assets, compile scss assets
LEKTOR_PLUGIN_FLAGS=-f scss
LEKTOR_DEPLOY_FLAGS=
2019-02-12 17:45:44 +01:00
all: build
.ONESHELL:
2019-02-12 17:45:44 +01:00
install:
if hash apt-get 2>/dev/null; then
2020-02-06 22:34:29 +01:00
sudo apt-get update -qq >/dev/null && sudo apt-get install -qq apt-utils imagemagick python3-pip python3-setuptools gcc git-lfs
elif hash pacman 2>/dev/null; then
2020-02-06 22:34:29 +01:00
sudo pacman -Syu imagemagick python-pip glibc lib32-glibc gcc git-lfs --noconfirm
elif hash dnf 2>/dev/null; then
2020-02-06 22:34:29 +01:00
sudo dnf install -y ImageMagick python3-pip gcc git-lfs
2020-08-11 16:34:42 +02:00
else
2020-02-06 22:34:29 +01:00
echo -e "Please install Imagemagick, python3-pip git-lfs and gcc"
fi
2020-02-07 14:38:41 +01:00
sudo pip3 install wheel --upgrade
sudo pip3 install lektor --upgrade
2019-02-12 17:45:44 +01:00
build:
if python3 -m lektor --version 2>/dev/null; then
python3 -m lektor build $(LEKTOR_PLUGIN_FLAGS)
else
lektor build $(LEKTOR_PLUGIN_FLAGS)
fi
2019-02-12 17:45:44 +01:00
server:
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
2020-08-11 16:34:42 +02:00
2019-09-09 21:17:33 +02:00
deploy:
lektor clean --yes
lektor plugin flush-cache
lektor build $(LEKTOR_PLUGIN_FLAGS) $(LEKTOR_DEPLOY_FLAGS)
lektor deploy $(LEKTOR_PLUGIN_FLAGS) $(LEKTOR_DEPLOY_FLAGS)
2019-12-22 11:54:48 +01:00
pull:
if git config remote.github.url > /dev/null; then
2021-04-13 21:40:57 +02:00
git pull github main
2019-12-22 11:54:48 +01:00
else
git remote add github git@github.com:c3woc/c3woc-website.git
2021-04-13 21:40:57 +02:00
git pull github main
2019-12-22 11:54:48 +01:00
fi
2021-02-09 00:31:18 +01:00
if git config remote.backwesen.url > /dev/null; then
2021-04-13 21:40:57 +02:00
git pull backwesen main
2021-02-09 00:31:18 +01:00
else
2021-04-13 21:40:57 +02:00
git remote add backwesen gitea@backwesen.de:c3woc/webseite.git
git pull backwesen main
2021-02-09 00:31:18 +01:00
fi
2021-04-13 21:40:57 +02:00
git pull origin main
2019-12-22 11:59:04 +01:00
push:
if git config remote.github.url > /dev/null; then
2021-04-13 21:40:57 +02:00
git push github main
2019-12-22 11:59:04 +01:00
else
git remote add github git@github.com:c3woc/c3woc-website.git
2021-04-13 21:40:57 +02:00
git push github main
2019-12-22 11:59:04 +01:00
fi
2021-02-09 00:31:18 +01:00
if git config remote.backwesen.url > /dev/null; then
2021-04-13 21:40:57 +02:00
git push backwesen main
2021-02-09 00:31:18 +01:00
else
git remote add backwesen gitea@backwesen.de:l3d/webseite.git
2021-04-13 21:40:57 +02:00
git push github main
2021-02-09 00:31:18 +01:00
fi