Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrmlik12/dcr
Discord bot for reading texts from images
https://github.com/mrmlik12/dcr
discord docker dotnet hacktoberfest
Last synced: 4 days ago
JSON representation
Discord bot for reading texts from images
- Host: GitHub
- URL: https://github.com/mrmlik12/dcr
- Owner: MRmlik12
- License: mit
- Created: 2021-04-12T19:26:30.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-04T18:24:40.000Z (about 2 years ago)
- Last Synced: 2023-03-04T01:48:20.362Z (over 1 year ago)
- Topics: discord, docker, dotnet, hacktoberfest
- Language: C#
- Homepage:
- Size: 2.59 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# DCR
[![Test, Build & deploy Docker image](https://github.com/MRmlik12/DCR/actions/workflows/build.yml/badge.svg)](https://github.com/MRmlik12/DCR/actions/workflows/build.yml)
[![Docker pulls](https://img.shields.io/docker/pulls/mrmlik12/dcr.svg)](https://hub.docker.com/r/mrmlik12/dcr)Discord bot for reading texts from images
## Commands
prefix used default is '!'
* help - redirect to github Commands section
* read - reads text from image and send response to same channel
* ping - sends information about latency from bot
* about - show version, authors and github repository link## OCR Supported languages
* English (for now)
## For Contributors
If you want to contribute here you must follow the rules:
* branch naming:
* `feature/example-desc-of-feature` - feature
* `fix/example-desc-of-fix` - fix
* don't create pr from your branch main (fork)## Building from source
You must have installed .NET 5.0 on your computer to build project```bash
$ dotnet build src -o ./out
// When build ends up
$ cd out
// Before launching bot you must setup configuration.json or envoirements variables DISCORD_TOKEN & PREFIX
$ dotnet Dcr.dll
```### Building with docker
```bash
$ docker build -t mrmlik12/dcr .
$ docker run mrmlik12/dcr -e DISCORD_TOKEN=TOKEN -e PREFIX=!
```