25 lines
589 B
Markdown
25 lines
589 B
Markdown
|
# Mastodon Finger Daemon
|
||
|
|
||
|
A dead simple finger daemon for Mastodon. Written as a joke.
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
```
|
||
|
$ python -m venv .venv
|
||
|
$ . .venv/bin/activate
|
||
|
$ pip install -r requirements.txt
|
||
|
$ cp fingerd.example.toml fingerd.toml
|
||
|
$ # edit fingerd.toml as appropriate
|
||
|
$ # note: port defaults to 79 which requires privileges (see systemd unit file, fingerd.service) or running as root (not recommended)
|
||
|
$ PORT=4000 ./fingerd.py
|
||
|
```
|
||
|
|
||
|
```
|
||
|
$ sudo cp fingerd.service /etc/systemd/system/fingerd.service
|
||
|
$ sudo systemctl enable --now fingerd
|
||
|
```
|
||
|
|
||
|
## License
|
||
|
|
||
|
BSD 2-clause + Patent, see LICENSE.txt
|