Skip to content
/ gibb Public
forked from Kirill89/gibb

Gibberish detection webservice based on Markov chain

License

Notifications You must be signed in to change notification settings

lkathke/gibb

 
 

Repository files navigation

Dockerized

This is a dockerized webservice based on Kirill89 Gibberish-Detector nodejs library. https://github.com/Kirill89/gibb

Getting started

git clone https://github.com/lkathke/gibb.git
cd gibb
docker build -t lkathke/gibb .
docker run -d --name gibberish-service -p 3000:3000 lkathke/gibb

Example output:

http://localhost:3000/Test

{
"text": "Test",
"isGibberish": false
}

http://localhost:3000/asd

{
"text": "asd",
"isGibberish": true
}

License

See LICENSE.md file.