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