https://github.com/moonbarc/lindisc
A Linear -> Discord webhook translator
https://github.com/moonbarc/lindisc
actix-web discord linear rust webhook
Last synced: about 2 months ago
JSON representation
A Linear -> Discord webhook translator
- Host: GitHub
- URL: https://github.com/moonbarc/lindisc
- Owner: MoonBarc
- Created: 2022-12-21T23:21:01.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-22T01:03:50.000Z (over 2 years ago)
- Last Synced: 2025-02-13T07:37:26.720Z (4 months ago)
- Topics: actix-web, discord, linear, rust, webhook
- Language: Rust
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# lindisc
Linear + Discord## Usage
Lindisc takes a Linear webhook and converts it into a Discord webhook.It does this through the `/linput` route.
To start lindisc in development, run
```sh
cargo run
```
and then point your new Linear webhook to `http(s)://host:5252/linput`.## Production
If you wish to run Lindisc in production, then you should add the `--release` flag to cargo.For example:
```sh
cargo build --release # only required once
./target/release/lindisc # run the executable produced. add .exe if on windows
```