pelican-mg/test_ludochaordic.sh

24 lines
542 B
Bash
Raw Normal View History

2017-11-30 00:12:15 +00:00
#!/bin/bash
set -o pipefail -o errexit -o nounset -o xtrace
2017-11-30 00:54:19 +00:00
cd ..
git clone https://github.com/getpelican/pelican-plugins.git
2017-11-30 00:57:52 +00:00
cd pelican-plugins
2017-11-30 00:54:19 +00:00
git submodule update --init image_process representative_image tag_cloud
2017-11-30 00:12:15 +00:00
cd ..
git clone https://github.com/Lucas-C/ludochaordic.git
cd ludochaordic
pip install pelican markdown beautifulsoup4 pillow
make DEBUG=1 OUTPUTDIR=output html
2017-11-30 00:12:15 +00:00
2017-11-30 00:54:19 +00:00
csslint --ignore=order-alphabetical output/theme/css/main.css
htmlhint output/
htmllint output/
make devserver
lighthouse http://localhost:
make stopserver