via

Simple pubsub server inspired by https://patchbay.pub/
git clone https://git.ce9e.org/via.git

commit
799ca602623f5317875f47702e8131ca7768af18
parent
0dd16c8ba2b9370902c655e299e807de0f3eca72
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2020-05-05 06:23
adapt description

Diffstat

M README.md 16 ++++------------
M via.service 2 +-

2 files changed, 5 insertions, 13 deletions


diff --git a/README.md b/README.md

@@ -1,9 +1,9 @@
    1    -1 # Via - Simple pubsub server
   -1     1 # Via - Simple generic HTTP server for messages and storage
    2     2 
    3    -1 This is very much inspired by <https://patchbay.pub/> and its clones
    4    -1 [conduit](https://github.com/prologic/conduit) and
    5    -1 [duct](https://github.com/schollz/duct).
   -1     3 This is a minimal but generic server that does two things:
    6     4 
   -1     5 -	pass messages between clients
   -1     6 -	store data
    7     7 
    8     8 ## Usage
    9     9 
@@ -34,11 +34,3 @@ to it at the same time:
   34    34 You should regularly clean up old files:
   35    35 
   36    36 	find {storage_dir} -type f -mtime +7 -delete
   37    -1 
   38    -1 ## Differences to patchbay
   39    -1 
   40    -1 -	no support for MPMC (blocking POST)
   41    -1 -	no support for req/res
   42    -1 -	no support for blocking GET
   43    -1 -	support for [server-sent events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events)
   44    -1 -	support for passwords

diff --git a/via.service b/via.service

@@ -1,5 +1,5 @@
    1     1 [Unit]
    2    -1 Description=Simple pubsub server
   -1     2 Description=Simple generic HTTP server for messages and storage
    3     3 After=network.target
    4     4 
    5     5 [Service]