Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sentriz/socr
screenshot OCR server
https://github.com/sentriz/socr
Last synced: 21 days ago
JSON representation
screenshot OCR server
- Host: GitHub
- URL: https://github.com/sentriz/socr
- Owner: sentriz
- Created: 2021-05-08T12:18:20.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-11-26T13:58:57.000Z (12 months ago)
- Last Synced: 2024-10-04T16:38:06.368Z (about 1 month ago)
- Language: Go
- Homepage:
- Size: 2.5 MB
- Stars: 11
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
![](.github/socr.png?v=2)
## running
please see example [docker-compose](./docker-compose.yml) and run
```shell
$ # ensure db is up and has the correct database
$ docker-compose up -d socr_db
$ docker-compose exec socr_db psql -U socr -c "create database socr"$ # if database exists, start everything
$ docker-compose up -d
$ docker-compose logs --tail 20 -f main
```### building from source
requires
- node
- npm
- go (1.19+)
- ffmpeg
- libtesseract-dev
- libleptonica-dev```shell
$ go generate ./web/
$ go install ./cmd/socr/socr.go
$ socr
```