-include .env export REMOTE_PORT ?= 22 SSH := ssh -p $(REMOTE_PORT) $(REMOTE_USER)@$(REMOTE_HOST) WEBROOT ?= $(REMOTE_HOME)/public_html SITE_CONFIG_DIR ?= $(REMOTE_HOME)/site-config # ── Tests ───────────────────────────────────────────────────────────────────── test-config: @bash scripts/test-form-config.sh test-post: @bash scripts/test-post.sh test-ui: @npx playwright test test: test-config test-post test-ui # ── Local dev ────────────────────────────────────────────────────────────────── start: docker compose up -d stop: docker compose down setup: start install-plugins fix-perms fix-perms: docker exec intotheeast_grav bash -c "getent passwd 1000 > /dev/null || useradd -u 1000 -M hostuser" docker exec intotheeast_grav chown -R 1000:1000 /var/www/html docker exec intotheeast_grav apachectl graceful install-plugins: docker exec -w /var/www/html intotheeast_grav php bin/gpm install $(shell cat plugins.txt | tr '\n' ' ') -y # ── Demo content ────────────────────────────────────────────────────────────── demo-load: # Load italy-2026-demo trip (create pages if absent) docker exec intotheeast_grav bash -c "\ mkdir -p /var/www/html/user/pages/01.trips/italy-2026-demo/01.dailies /var/www/html/user/pages/01.trips/italy-2026-demo/02.map /var/www/html/user/pages/01.trips/italy-2026-demo/03.stats /var/www/html/user/pages/01.trips/italy-2026-demo/04.stories && \ cp /var/www/html/user/docs/demo/trips/italy-2026-demo/trip.md /var/www/html/user/pages/01.trips/italy-2026-demo/trip.md 2>/dev/null || true && \ cp /var/www/html/user/docs/demo/trips/italy-2026-demo/map.md /var/www/html/user/pages/01.trips/italy-2026-demo/02.map/map.md 2>/dev/null || true && \ cp /var/www/html/user/docs/demo/trips/italy-2026-demo/stats.md /var/www/html/user/pages/01.trips/italy-2026-demo/03.stats/stats.md 2>/dev/null || true && \ cp /var/www/html/user/docs/demo/trips/italy-2026-demo/stories.md /var/www/html/user/pages/01.trips/italy-2026-demo/04.stories/stories.md 2>/dev/null || true && \ cp -r /var/www/html/user/docs/demo/trips/italy-2026-demo/04.stories/. /var/www/html/user/pages/01.trips/italy-2026-demo/04.stories/ 2>/dev/null || true && \ cp -r /var/www/html/user/docs/demo/trips/italy-2026-demo/dailies/. /var/www/html/user/pages/01.trips/italy-2026-demo/01.dailies/ && \ cp /var/www/html/user/docs/demo/trips/italy-2026-demo/*.gpx /var/www/html/user/pages/01.trips/italy-2026-demo/ 2>/dev/null || true && \ cd /var/www/html && php bin/grav clearcache" demo-reset: docker exec intotheeast_grav bash -c "rm -rf /var/www/html/user/pages/01.trips/italy-2026-demo && cd /var/www/html && php bin/grav clearcache" pixelfed-import: docker exec intotheeast_grav bash -c "which python3 || apt-get install -y python3 --no-install-recommends -q" docker cp /home/mischa/Nextcloud/Downloads/pixelfed/pixelfed-statuses.json intotheeast_grav:/tmp/pixelfed-statuses.json docker cp scripts/pixelfed-import.py intotheeast_grav:/tmp/pixelfed-import.py docker exec -w /var/www/html intotheeast_grav python3 /tmp/pixelfed-import.py # ── Content sync (user repo ↔ Gitea) ────────────────────────────────────────── content-push: git -C user push origin main content-pull: git -C user pull origin main # ── Remote credentials ───────────────────────────────────────────────────────── remote-env-setup: @$(SSH) "printf 'GITEA_HOST=%s\nGITEA_USER=%s\nGITEA_TOKEN=%s\n' \ '$(GITEA_HOST)' '$(GITEA_USER)' '$(GITEA_TOKEN)' > ~/.env-intotheeast && chmod 600 ~/.env-intotheeast" @echo "Credentials written to server. Run 'make remote-env-remove' when done." remote-env-remove: @$(SSH) "rm -f ~/.env-intotheeast" @echo "Credentials removed from server." # ── Remote: initial install ──────────────────────────────────────────────────── remote-wipe: $(SSH) "cd $(WEBROOT) && rm -rf assets backup bin cache images logs system tmp vendor webserver-configs index.php .htaccess CHANGELOG.md LICENSE.txt README.md" remote-install: $(SSH) "WEBROOT=$(WEBROOT) \ SITE_CONFIG_DIR=$(SITE_CONFIG_DIR) \ USER_REPO=$(USER_REPO) \ MAIN_REPO=$(MAIN_REPO) \ GRAV_VERSION=$(GRAV_VERSION) \ PLUGINS='$(shell cat plugins.txt | tr '\n' ' ')' \ GITEA_HOST=$(GITEA_HOST) \ GITEA_USER=$(GITEA_USER) \ GITEA_TOKEN=$(GITEA_TOKEN) \ bash -s" < scripts/server-install.sh # ── Remote: ongoing maintenance ──────────────────────────────────────────────── remote-fetch: $(SSH) "git -C $(SITE_CONFIG_DIR) pull" remote-install-plugins: $(SSH) "cd $(WEBROOT) && php bin/gpm install $(shell cat plugins.txt | tr '\n' ' ') -y" remote-upgrade-grav: $(SSH) "cd $(WEBROOT) && php bin/grav upgrade" remote-clean: $(SSH) "cd $(WEBROOT) && php bin/grav clearcache" remote-maintenance-on: $(SSH) "bash -s on $(WEBROOT)" < scripts/server-maintenance.sh remote-maintenance-off: $(SSH) "bash -s off $(WEBROOT)" < scripts/server-maintenance.sh