Merge branch 'main' of gitea:Mira/flask_blog

This commit is contained in:
m
2026-03-15 20:05:56 +01:00
2 changed files with 12 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
*.pyc

11
deploy.sh Executable file
View File

@@ -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