Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mattieserver/mattermost-auto-acknowledge
https://github.com/mattieserver/mattermost-auto-acknowledge
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mattieserver/mattermost-auto-acknowledge
- Owner: mattieserver
- License: apache-2.0
- Created: 2024-12-06T08:57:45.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-12-06T14:54:40.000Z (30 days ago)
- Last Synced: 2024-12-06T15:26:29.635Z (30 days ago)
- Language: Go
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# mattermost-auto-acknowledge
Automatically react to all messages send by a person in a certain team and channel in mattermost.
## Build
```bash
go build cmd/mattermost-auto-acknowledge/acknowledge.go
```## Configure
Create a folder `configs` and create a file `settings.json`.
It should look like this:
```json
{
"mattermost": {
"base_url": "http://localhost:8000",
"username": "test",
"password": "test",
"team": "test",
"channel": "test",
"user": "test",
"sub_messages": false
}
}
```## Run
```bash
./acknowledge
```