about summary refs log tree commit diff
path: root/README.md
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2024-03-04 03:22:53 +0300
committerVika <vika@fireburn.ru>2024-03-04 03:22:53 +0300
commitb7f0140dc05e4b33352e0ea46db4b36c6bfb2894 (patch)
tree2ea3a94324a0c50e5c0aa0675389275faa296656 /README.md
parente7b742f3a9d0fff13257d7d5dd1d843026a8bb1c (diff)
README.md: update with new info
I forgot, teehee~
Diffstat (limited to 'README.md')
-rw-r--r--README.md34
1 files changed, 18 insertions, 16 deletions
diff --git a/README.md b/README.md
index 2299f20..b8406c8 100644
--- a/README.md
+++ b/README.md
@@ -11,16 +11,15 @@ blog.
 
 Some things aren't currently fully implemented. The non-exhaustive
 list is:
- - Logging in via IndieAuth
- - Using your website as an IndieAuth endpoint (polyfilled via an
-   external service)
- - Sending Webmentions (though you can send them manually!)
- - Receiving Webmentions
- - Syndicating
- - Token management (polyfilled via an external service)
+
+ - Logging in to the website via IndieAuth (e.g. for private posts)
+ - Displaying received Webmentions (beyond counters)
+ - Syndication with social network silos
+ - UI for token management and revocation
  - Changing settings beyond what was filled in at the onboarding
 
 Some planned features also include:
+
  - An interactive (and customizable) widget on the main page
  - Custom CSS
  - Custom syndication locations
@@ -84,19 +83,22 @@ Kittybox to preserve your privacy and security.
 Set the following environment variables:
  - `BACKEND_URI`: Your storage backend URI, used to store post
    content.
-   - To use flat files, use `file://` and append an absolute path to
-     your folder like this: `file:///var/lib/kittybox/data`
-   <!-- - To use Redis (currently not working) use `redis://` and append
-     either an URI or a path to the Unix socket for your Redis
-     instance.-->
+    - To use flat files, use `file://` and append an absolute path to
+      your folder like this: `file:///var/lib/kittybox/data`
+    - To use Postgres, use `postgres://`. You probably know how to use this.
+    <!-- - To use Redis (currently not working) use `redis://` and append
+      either an URI or a path to the Unix socket for your Redis
+      instance.-->
  - `BLOBSTORE_URI`: Your media endpoint storage URI, used to store
    files uploaded via the media endpoint.
-   - To use flat files, use `file://` and append an absolute path to
-     your folder like this: `file:///var/lib/kittybox/media`
+    - To use flat files, use `file://` and append an absolute path to
+      your folder like this: `file:///var/lib/kittybox/media`
  - `AUTH_STORE_URI`: Storage for authentication-related data (tokens,
    authorization codes etc.)
-   - To use flat files, use `file://` and append an absolute path to
-     your folder like this: `file:///var/lib/kittybox/auth`
+    - To use flat files, use `file://` and append an absolute path to
+      your folder like this: `file:///var/lib/kittybox/auth`
+ - `JOB_QUEUE_URI`: Job queue URI, currently used for incoming
+   webmention handling. Only Postgres is supported (see above for syntax)
 
 Additionally you can customize the `SERVE_AT` environment variable to
 customize where Kittybox will listen to requests.