#notion #webhook #discord #web-ui #mattermost #config-toml

app einwurf

Minimal unauthenticated web UI to accept and forward notes

2 unstable releases

0.2.0 Feb 3, 2023
0.1.0 Jan 29, 2023

#7 in #notion

MIT license

18KB
378 lines

Einwurf

Accept notes, URLs, etc. with a public, minimal web UI (just a text area and a submit button) without authentication and post them to another, likely access-restricted destination of choice.

Use case: You are browsing the web on your phone or work computer and come across an idea or link you want to engage with later (say, at home on your private computer).

With Einwurf, you can just open the web interface, "drop" those notes, and know they got appended to some list you can access later.

Currently these destinations are supported:

Usage

An example configuration file with explanations on how to obtain or choose values is included as config_example.toml.

A configuration file is mandatory to run it:

$ einwurf --config config.toml

It is recommended to run Einwurf on localhost/127.0.0.1 only and expose it through a reverse proxy that also provides TLS.

For example, nginx could be set up like this (with Certbot used to manage certificates):

server {
    listen 443 ssl;
    server_name einwurf.example;

    location / {
        proxy_pass      http://127.0.0.1:3000/;
        proxy_redirect  off;
    }

    ssl_certificate /etc/letsencrypt/live/einwurf.example/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/einwurf.example/privkey.pem; # managed by Certbot
}

License

Einwurf is licensed under the MIT license.

Copyright 2022-2023 Jochen Kupperschmidt

Dependencies

~10–24MB
~359K SLoC