mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-10-31 23:07:47 +00:00
13 lines
300 B
Bash
Executable File
13 lines
300 B
Bash
Executable File
#!/bin/bash
|
|
set -o pipefail -o errexit -o nounset -o xtrace
|
|
|
|
cd ..
|
|
git clone https://github.com/Lucas-C/ludochaordic.git
|
|
cd ludochaordic
|
|
|
|
pip install pelican markdown beautifulsoup4 pillow
|
|
make DEBUG=1 OUTPUTDIR=output devserver
|
|
|
|
node_modules/.bin/htmlhint output/
|
|
node_modules/.bin/htmllint output/
|