TipiMate is an extremely simple tool that periodically checks for app updates in your Runtipi instance and then sends notifications to your prefered Discord channel/server. It is super fast, lightweight and only ~20mb in size.
Note
TipiMate only supports runtipi instances from v3.7.0 and above since this version added the ability to use an API to communicate with the server.
Warning
TipiMate is still in early stages of development so issues are to be expected. If you encounter any please create an issue so I can fix them as soon as possible.
Warning
Files are constantly being updated in the repository resulting in some broken environment variables. Please make sure to use the environment variables listed here throught the installation guide until v1.0.0
This project is still in early stages of development so it only includes the basic features but I am planning to add the following ones too.
- Multiple instances
- Configuration using environment variables (docker)
- Support for other notifications service
- Project rename
- Possibly a CLI check mode like Cup
- Check for main Runtipi version
Tipimate v1.0.0 will come with all shoutrrr supported notification services, here are the ones implemented and the ones I will implement:
- Bark
- Discord
- Gotify
- Google Chat
- IFTTT
- Join
- Mattermost
- Matrix
- Ntfy
- OpsGenie
- Pushbullet
- Pushover
- Rocketchat
- Slack
- Teams
- Telegram
- Zulip Chat
- Generic Webhook
You can run tipimate with two ways, docker or binary. If you chose binary, you can grab the latest binary from the releases page, then chmod +x tipimate
and finally you can run it with ./tipimate
. assuming the binary is named tipimate
Running with docker is also very easy, you just need to download the docker compose file from here and run tipimate with docker compose up -d
. make sure to change the environment variables accordingly
If you prefer docker run command you can run it with
docker run -t -d --name tipimate -v ./data:/data -e NOTIFY_URL=your-discord-url -e RUNTIPI=your-runtipi-url -e JWT_SECRET=your-jwt-secret ghcr.io/steveiliop56/tipimate:latest
Tip
You can set the --runtipi-internal
flag or the RUNTIPI_INTERNAL
environment variable to something like http://localhost
if TipiMate is running on the same server as your Runtipi server and then set the --runtipi
flag or RUNIPI
to the public URL of your instance e.g. https://runtipi.mydomain.com
so TipiMate can both connect directly to Runtipi and show the correct URL on Discord.
To build the project you need to have Go and Git installed.
You firstly have to clone the repository with
git clone https://github.com/steveiliop56/tipimate
cd tipimate
Then install dependencies
go mod tidy
And finally run it with
go run .
Or build it with
go build
If everything succeeds you should have a binary named tipimate
.
Note
You can also build for other operating systems/architectures using GOOS=windows
and GOARCH=arm64
.
Note
You can also run a "development" docker compose file by copying the .env.example
file to .env
, changing your environment variables and running docker compose -f docker-compose.dev.yml up --build --force-recreate
. With this way you can test your changes in the docker image too.
This project is still in early stages of development so bugs are to be expected. If you are interested in helping with my terrible go skills, feel free to create a pull request. Any help is appreciated!
TipiMate is licensed under the GNU General Public License v3.0. TL;DR — You may copy, distribute and modify the software as long as you track changes/dates in source files. Any modifications to or software including (via compiler) GPL-licensed code must also be made available under the GPL along with build & install instructions.