You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lots of infrastructure tweaks; two new features relating to tags.
* Add new POST_TAGS_KEY and POST_TAGS_STYLE configuration options
* Convert project to TypeScript
* Move from npm -> yarn
* Move from request -> axios since request is now deprecated
* Proper linting and formatting
* Proper dev mode
* Remove use of `eval`
Copy file name to clipboardexpand all lines: README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -12,12 +12,12 @@ This enables you to post to your static microblog entirely using the web (for ex
12
12
13
13
Here's how it works:
14
14
15
-
* A running microstat server acts as a [Micropub](https://indieweb.org/Micropub) endpoint
16
-
* When it receives a Micropub post, it writes a Markdown file to a location you configure
17
-
* Once the Markdown file is written, it runs a command you configure (that would trigger something like [Jekyll](https://jekyllrb.com/) or [Hugo](https://gohugo.io/) to build and publish your microblog)
18
-
* Once your microblog is updated, it sends a Webmention if your post is a reply to someone else's post
19
-
* Will attempt to automatically discover the Webmention endpoint, or will use [micro.blog](https://micro.blog)'s Webmention endpoint if you're replying to a micro.blog post
20
-
* If you use micro.blog, optionally ping micro.blog with your microblog's RSS/Atom/JSON feed so your posts are instantly mirrored there
15
+
- A running microstat server acts as a [Micropub](https://indieweb.org/Micropub) endpoint
16
+
- When it receives a Micropub post, it writes a Markdown file to a location you configure
17
+
- Once the Markdown file is written, it runs a command you configure (that would trigger something like [Jekyll](https://jekyllrb.com/) or [Hugo](https://gohugo.io/) to build and publish your microblog)
18
+
- Once your microblog is updated, it sends a Webmention if your post is a reply to someone else's post
19
+
- Will attempt to automatically discover the Webmention endpoint, or will use [micro.blog](https://micro.blog)'s Webmention endpoint if you're replying to a micro.blog post
20
+
- If you use micro.blog, optionally ping micro.blog with your microblog's RSS/Atom/JSON feed so your posts are instantly mirrored there
21
21
22
22
## Get Going
23
23
@@ -38,13 +38,13 @@ Note that microstat doesn't need to run on the same port, or even the same serve
38
38
39
39
Here's how I proxy to microstat on [my microblog](https://joshdick.net/microblog):
40
40
41
-
1) Advertise my site's Micropub endpoint by including the following in its HTML:
41
+
1. Advertise my site's Micropub endpoint by including the following in its HTML:
2) Configure [nginx](https://nginx.org) to proxy requests sent to the advertised Micropub endpoint to a microstat server that's running on an entirely different machine/port (at `https://example.com:3141`):
47
+
2. Configure [nginx](https://nginx.org) to proxy requests sent to the advertised Micropub endpoint to a microstat server that's running on an entirely different machine/port (at `https://example.com:3141`):
0 commit comments