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.
24 lines
457 B
24 lines
457 B
echo "Pulling pads..."
|
|
|
|
/usr/local/bin/poetry run etherpump pull \
|
|
--meta \
|
|
--html \
|
|
--text \
|
|
--magicwords \
|
|
--publish-opt-in \
|
|
--pub p \
|
|
--css ../stylesheet.css \
|
|
--fix-names \
|
|
--connection 5 \
|
|
--force
|
|
|
|
echo "Building the etherpump index..."
|
|
|
|
/usr/local/bin/poetry run etherpump index \
|
|
input \
|
|
p/*.meta.json \
|
|
--templatepath templates \
|
|
--title "Notes, __MAGICWORDS__, readers & more ..." \
|
|
--output index.html
|
|
|
|
echo "Done!"
|
|
|