Web site, documents, statistics, and tools in support of the PNW Bible Quizzing program.
This project requires the Omniframe project, which is expected to be deployed in a parallel directory. Follow the instructions in the Omniframe README "Installation" and "Project Setup" sections.
To run the project application, follow the instructions in the ~/app.psgi
file within this project's root directory.
Within ~/static/photos reside many JPG photo image files. These are
automatically picked up and displayed at random across most rendered pages.
Use the following procedure to optimize photos prior to add/commit:
for file in $( ls *.{jpg,png,gif} 2> /dev/null )
do
name=$(echo $file | sed 's/\.[^\.]*$//')
convert $file -resize 440\> $name.jpg
done
rm *.{png,gif}
jpegoptim -s *.jpg
Requires:
imagemagickjpegoptim