1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-20 02:00:49 +00:00
strimertul/README.md

41 lines
1.3 KiB
Markdown
Raw Normal View History

2021-05-02 12:39:37 +00:00
# Strimertül
2021-05-02 12:29:43 +00:00
2021-10-28 09:01:52 +00:00
Small broadcasting suite, includes:
2021-05-02 12:29:43 +00:00
2021-09-18 22:22:45 +00:00
- Extremely simple/fast disk-backed KV over websocket ([Kilovolt](https://github.com/strimertul/kilovolt)) for interacting with web-based overlays
2021-10-28 09:01:52 +00:00
- and it has pub/sub!
2021-05-02 12:29:43 +00:00
- Static file server for said overlays
- Loyalty system that tracks viewers and allows them to redeem rewards and contribute to community goals
- Twitch IRC bot to tie everything together
2021-10-28 09:01:52 +00:00
- Backend integration ([stulbe](https://github.com/strimertul/stulbe))
2021-05-02 12:29:43 +00:00
Platform support is limited to Twitch only for the time being (sorry!)
2021-09-18 22:06:54 +00:00
## Getting started
Download the latest build from here: [github.com/strimertul/strimertul/releases/latest](https://github.com/strimertul/strimertul/releases/latest)
Start strimertul and the Web UI will appear when the app is done loading, you can start configuring and using it from there!
2021-05-02 12:39:37 +00:00
## Building
2021-05-02 12:29:43 +00:00
You need to build the frontend first!
```sh
cd frontend
npm i
npm run build
```
Once that's done, just build the app like any other Go project
```sh
go build
```
2021-05-02 12:39:37 +00:00
## License
2021-05-02 12:29:43 +00:00
Kilovolt's code is based on Gorilla Websocket's server example, licensed under [BSD-2-Clause](https://github.com/gorilla/websocket/blob/master/LICENSE)
2021-05-02 12:29:43 +00:00
The entire project is licensed under [AGPL-3.0-only](LICENSE) (see `LICENSE`). For ISC exceptions, see [LICENSING.md](LICENSING.md).