* [examples/openspending] - openspending v0.2 * [examples/openspending][m] - fix build * [examples/openspending][xs] - fix build * [examples/openspending][xs] - add prebuild step * [examples/openspending][m] - fix requested by demenech * [examples/openspending][sm] - remove links + fix bug
15 lines
236 B
Bash
Executable File
15 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
curl -o book.zip http://okfn.booktype.pro/export/spending-data-handbook/export
|
|
unzip -o -d book book.zip
|
|
|
|
python web_version.py
|
|
|
|
mkdir -p static
|
|
rm static/*
|
|
cp book/static/* static/
|
|
|
|
mogrify -geometry '600x600>' static/*
|
|
|
|
|