This is a microservice designed to check the spelling of words. Based on pyenchant. Exposes a REST API.
Current available languages are: ru_RU, en_US, es_ES, fr_FR, de_DE, pt_PT.
It runs blazingly fast due to the use of pychant in its kernel, LRU cache usage and pypy.
Also it supports feature called «user dictionaries» — user can add his own word-exceptions to personal dictionary.
docker run -p 10113:10113 -t --mount source=spellcheck-dicts,target=/data/ xfenix/spellcheck-microservice:latest- check http://localhost:10113/docs/ for full REST documentation
- main REST endpoint you will be needed is http://localhost:10113/api/check/ (this will be available without authorization)
You can change config of the service by changing the environment variables. Here is a list of them:
SPELLCHECK_SENTRY_DSNSentry DSN for integration. Empty field disables integration. Default value is empty string.SPELLCHECK_API_KEYdefine api key for users dictionaries mostly. Please, provide, if you want to enable user dictionaries API. Default value is empty string.SPELLCHECK_ENABLE_CORSenable CORS for all endpoints. In docker container this option is disabled. Default value isTrue.SPELLCHECK_STRUCTURED_LOGGINGenables structured (json) logging. Default value isTrue.SPELLCHECK_WORKERSdefine application server workers count. If you plan to use k8s and only scale with replica sets, you might want to reduce this value to1. Default value is8. Restrictions:Gt(gt=0),Lt(lt=301)SPELLCHECK_SERVER_ADDRESSbinding address, default value suitable for docker. Default value is0.0.0.0.SPELLCHECK_PORTbinding port. Default value is10113. Restrictions:Gt(gt=1023),Lt(lt=65536)SPELLCHECK_CACHE_SIZEdefine LRU cache size for misspelled word/suggestions cache. Any value less than1makes the cache size unlimited, so be careful with this option. Default value is10000.SPELLCHECK_API_PREFIXdefine all API's URL prefix. Default value is/api/.SPELLCHECK_DOCS_URLdefine documentation (swagger) URL prefix. Default value is/docs/.SPELLCHECK_MAX_SUGGESTIONSdefines how many maximum suggestions for each word will be available. 0 means unlimitied. Default value is0. Restrictions:Ge(ge=0)SPELLCHECK_DICTIONARIES_PATHdefine directory where user dicts is stored. This is inner directory in the docker image, please map it to volume as it shown in the quickstart part of this readme. Default value is/data.SPELLCHECK_DICTIONARIES_STORAGE_PROVIDERdefine wich engine will store user dictionaries. Default value isStorageProviders.FILE.SPELLCHECK_DICTIONARIES_DISABLEDswitches off user dictionaries API no matter what. Default value isFalse.SPELLCHECK_USERNAME_MIN_LENGTHminimum length of username. Default value is3.SPELLCHECK_USERNAME_MAX_LENGTHmaximum length of username. Default value is60.SPELLCHECK_EXCLUSION_WORDS_STRString with list of words which will be ignored in /api/check endpoint each request. Example:'foo, bar'. Default value is empty string.
Note: all docker & docker-compose variants use named volumes to store user dictionaries.
docker run -p 10113:10113 -t --mount source=spellcheck-dicts,target=/data/ xfenix/spellcheck-microservice:latest
- Save this example configuration as
docker-compose.yml:
version: "3.9"
services:
spellcheck:
image: xfenix/spellcheck-microservice:latest
ports:
- "10113:10113"
volumes:
- spellcheck-dicts:/data/
volumes:
spellcheck-dicts:- Then run
docker-compose up
You cand find it here https://github.com/xfenix/spellcheck-microservice/releases
- Clone this repo
- For MacOS X
brew install enchant - For Debian/Ubuntu
apt-get install -y enchant-2 hunspell-ru uv sync --group devsource .venv/bin/activate- Execute
makecommand to run local development server - README is automatically updated in the CI pipeline for each commit
Default api-key for local development is debug (you will need this to work with user dictionaries API).
Please check ./Makefile for more details
For MacOS X on Apple Silicon add PYENCHANT_LIBRARY_PATH=/opt/homebrew/lib/libenchant-2.dylib to your .zprofile