My static website generator using poole https://www.xythobuz.de
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

localtest.sh 174B

12345678910111213141516
  1. #!/bin/bash
  2. set -e
  3. echo "Cleaning"
  4. rm -rf output
  5. mkdir output
  6. echo "Building"
  7. ./poole.py --build
  8. echo "Copying"
  9. cp -r static/* output/
  10. echo "Serving"
  11. ./poole.py --serve