diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..2f008d6 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,11 @@ +#!/bin/bash +cd content +# 1. Save any new comments first +git add comments.csv +git commit -m "chore: save comments before update" +git push origin main + +# 2. Now update the whole blog +cd .. +git pull +git submodule update --init --recursive