mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-10-31 23:07:47 +00:00
24 lines
547 B
Bash
Executable File
24 lines
547 B
Bash
Executable File
#!/bin/bash
|
|
set -o pipefail -o errexit -o nounset -o xtrace
|
|
|
|
cd ..
|
|
git clone https://github.com/getpelican/pelican-plugins.git
|
|
cd pelican-plugins
|
|
git submodule update --init image_process representative_image tag_cloud
|
|
|
|
cd ..
|
|
git clone https://github.com/Lucas-C/ludochaordic.git
|
|
cd ludochaordic
|
|
|
|
pip install pelican markdown beautifulsoup4 pillow
|
|
make DEBUG=1 OUTPUTDIR=output devserver
|
|
|
|
csslint --ignore=order-alphabetical output/theme/css/main.css
|
|
|
|
htmlhint output/
|
|
htmllint output/
|
|
|
|
make devserver
|
|
lighthouse http://localhost:
|
|
make stopserver
|