Reasons to try prose.sh
- No tools to install, just use ssh/rsync
- Keep your blog posts on your own machine and version controlled with git
- Write posts in Github markdown, which I already know
- Markdown is great for displaying code, and I intend for this to mostly be a tech blog
- Simple account setup, just
ssh new@prose.sh
or to use a specific ssh key:ssh -i ~/.ssh/key_here new@prose.sh
I wrote myself a quick publish script:
1#!/bin/zsh
2set -ex
3
4blog_dir=${0:a:h}
5
6rsync ${blog_dir}/*.md prose.sh:/
7