🙇🏻‍♂️ handtyped

LanguageTool browser extension with local instance of LanguageTool

Continuing from Local grammar checker with Dockerised LanguageTool and pyLanguagetool CLI

LanguageTool’s browser extension can be configured to use Local server (localhost) which expects an instance running at localhost:8081.

Using the extension provides a nice UI for configuring options and reviewing text.

Lastly, I needed a local-only web page with a text field:1

1services:
2    nginx-fpm-alpine:
3        image: privatebin/nginx-fpm-alpine
4        volumes:
5            - '$PWD/privatebin-data:/srv/data'
6        ports:
7            - '8080:8080'
8        read_only: true
9        restart: always

  1. A rather similar setup was documented at drfrankenstein.co.uk↩︎

#software