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)