My static website generator using poole https://www.xythobuz.de
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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