From 6e41cc1b7a6769608cacb456bae21aa0d7704f59 Mon Sep 17 00:00:00 2001 From: yyamashita Date: Fri, 19 Jun 2026 15:19:00 +0900 Subject: Add microblog service MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Caddy: route blog.yyamashita.com → microblog-app:3000 - git: add microblog post-receive hook and update work tree path to /app/microblog - DNS: add blog subdomain to Route 53 WEB_SUBDOMAINS Co-Authored-By: Claude Sonnet 4.6 --- git/hooks/microblog/post-receive | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 git/hooks/microblog/post-receive (limited to 'git/hooks/microblog') diff --git a/git/hooks/microblog/post-receive b/git/hooks/microblog/post-receive new file mode 100755 index 0000000..2627861 --- /dev/null +++ b/git/hooks/microblog/post-receive @@ -0,0 +1,8 @@ +#!/bin/bash +set -e +APP_DIR=/app/microblog +GIT_WORK_TREE=$APP_DIR git checkout -f +cd $APP_DIR +mkdir -p data +docker compose up -d --build +echo "Deploy complete: microblog" -- cgit v1.2.3