monkeyman
monkeyman copied to clipboard
How to get a preview of the index page?
I tried to get the sample page working ...
$ cd sample
$ monkeyman server
$ curl "http://localhost:4567/" && echo
Not found
$ curl "http://localhost:4567/index.html" && echo
Not found
$ curl "http://localhost:4567/index.scaml" && echo
Not found
but
$ curl -s "http://localhost:4567/organizing-your-posts.html" \
| html2text | head -n3 && echo
****** Organizing your posts ******
As I said before, a blog typically doesn't exist of a single post.
Can you give me a hint ;-)