An open API service indexing awesome lists of open source software.

https://github.com/veralvx/docker-languagetool-cli

LanguageTool client for Docker/Podman with ngrams and fasttext installed by default
https://github.com/veralvx/docker-languagetool-cli

docker docker-image dockerfile dockerfiles fasttext languagetool ngram ngrams podman podman-image spellcheck spellchecker spelling text-analysis

Last synced: 8 months ago
JSON representation

LanguageTool client for Docker/Podman with ngrams and fasttext installed by default

Awesome Lists containing this project

README

          

> LanguageTool is an Open Source proofreading software for English, Spanish, French, German, Portuguese, Polish, Dutch, and more than 20 other languages. It finds many errors that a simple spell checker cannot detect.

The source code of LanguageTool is available [here](https://github.com/languagetool-org/languagetool)

This repo provides a `Dockerfile` that creates an image with `ngrams` datasets and `fasttext` downloaded into it (which also causes the image to occupy some gigabytes). I wanted a client for LanguageTool that was portable, without thinking about mounting directories for full function.

Build the image:

```
podman build -f Dockerfile -t languagetool
```

Run it:

```
podman run --rm --volume $(pwd):/workspace languagetool
```