self-conscious-design
clone your own copy | download snapshot

Snapshots | iceberg

No images in this repository’s iceberg at this time

Inside this repository

generate.sh
text/x-sh

Download raw (338 bytes)

#!/bin/bash
# Script to generate epubs for all source folders in epub_content

echo "Generating all epubs:"
for i in $( ls public/epub_content/ | grep -v epub_library.json ); do
    echo "Generating $i";
    bash zip.sh $i;
done;
echo "Done"

echo
echo "Generating index:"
python generate_index.py > public/epub_content/epub_library.json