From ac64f0f197eb2652cfb7450fa0e1230bee7396f4 Mon Sep 17 00:00:00 2001 From: Awiteb Date: Sat, 13 Apr 2024 16:01:03 +0300 Subject: [PATCH] Add matrix homeserver files --- Justfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Justfile b/Justfile index 1b9cde4..92d15eb 100644 --- a/Justfile +++ b/Justfile @@ -9,6 +9,13 @@ OUT_DIR := "public" git init . git checkout -B gh-pages touch .nojekyll + + # Create matrix homeserver files + # Remove it or change it to your server + mkdir -p .well-known/matrix/ + echo '{"m.homeserver": {"base_url": "https://matrix.4rs.nl}}' > .well-known/matrix/client + echo '{"m.server": "matrix.4rs.nl:443"}' > .well-known/matrix/server + git add . git commit -m "Deploy blog to github pages" git remote add origin $(git --git-dir ../.git remote get-url github)