{"id":19806076,"url":"https://github.com/raitraidma/feeliks","last_synced_at":"2026-06-16T14:32:17.363Z","repository":{"id":95020424,"uuid":"91171645","full_name":"raitraidma/feeliks","owner":"raitraidma","description":null,"archived":false,"fork":false,"pushed_at":"2017-05-21T20:59:52.000Z","size":150,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-23T14:25:47.415Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/raitraidma.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-13T12:08:42.000Z","updated_at":"2017-05-16T20:19:02.000Z","dependencies_parsed_at":"2023-06-11T16:15:17.994Z","dependency_job_id":null,"html_url":"https://github.com/raitraidma/feeliks","commit_stats":{"total_commits":10,"total_committers":2,"mean_commits":5.0,"dds":0.09999999999999998,"last_synced_commit":"183c250851e818217bec19085b242d2f76d06fad"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/raitraidma/feeliks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raitraidma%2Ffeeliks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raitraidma%2Ffeeliks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raitraidma%2Ffeeliks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raitraidma%2Ffeeliks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raitraidma","download_url":"https://codeload.github.com/raitraidma/feeliks/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raitraidma%2Ffeeliks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34410780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-16T02:00:06.860Z","response_time":126,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T09:06:22.234Z","updated_at":"2026-06-16T14:32:17.341Z","avatar_url":"https://github.com/raitraidma.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Feeliks\n\n`environment/cert/private.key` and `environment/cert/public.key` are used to enable Ansible to connect to other machines - you can generate your own key pair.\n\n## Prerequisites\nInstall to your host machine:\n- [VirtualBox](https://www.virtualbox.org/)\n- [Vagrant](https://www.vagrantup.com/)\n\n## Setup\n\n```sh\n# Clone repo\ngit clone https://github.com/raitraidma/feeliks.git\ncd feeliks\n\n# Create VMs\nvagrant up\n\n# Login into ansible's VM\nvagrant ssh ansible\n# or use Putty: 127.0.0.1:2210 vagrant/vagrant\n\n# Create Docker Swarm\ncd /vagrant/environment\n./setup.sh\nexit\n\n# Deploy services\nvagrant ssh node01\n# or use Putty: 127.0.0.1:2211 vagrant/vagrant\ncd /vagrant/environment\n./deploy.sh\n```\n\n## Management and monitoring\nWhen Portainer service comes up, then you can monitor docker services from `http://127.0.0.1:9000`.\nThis may take some time. So far you can use docker commands to monitor your environment.\n\nIn node01 (which is Docker master), you can monitor environment with such commands:\n```sh\n# List all nodes in the swarm\ndocker node ls\n\n# List services in stack feeliks (there you can see if services are already up and running)\ndocker stack services feeliks\n\n# List the tasks of a service (there you can see what is the current state of the task also)\ndocker service ps \u003cservice id\u003e\n\n# Visit Documentation of Docker for more information: https://docs.docker.com/\n```\n\n## Development\nFor development you need to install:\n- [Java JDK 1.8](http://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html)\n- [Maven](https://maven.apache.org/)\n- [Docker](https://www.docker.com/), if you want to build images in host machine\n\n### Build images in VM\nYou do not have to install any additional software for that.\n```sh\nvagrant ssh node01\ncd /vagrant\n\n# Build all modules\nmvn clean package docker:build\n\n# Build one module\nmvn clean package docker:build -pl stt -am\n```\n\n## Communicating with services\n\n### STT (Speech To Text)\nSend wav file with recorded text and you receive a json representing that text.\n```sh\ncurl -T sentence_in_estonian.wav http://172.16.66.11:8880/batch\n```\nreturns\n```\n{\"utterance\":\"see on teine lause\"}\n```\n\n### TTS (Text To Speech)\nAdd text to `text` parameter. Service will return wav file. For example:\n`http://172.16.66.11:8881/?text=Tere Ärni. Mitu ööbikut sa õues üle lugesid`\n\n\n### Analyzer\nAnalyzes text and tries to answer.\n\n`http://172.16.66.11:8882/?text=Mis kell on`\n\n`http://172.16.66.11:8882/?text=Mis on maatriks`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraitraidma%2Ffeeliks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraitraidma%2Ffeeliks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraitraidma%2Ffeeliks/lists"}