[READ-ONLY] Mirror of https://github.com/mrgnw/koku. A cron daemon written in Rust — 刻
0

Configure Feed

Select the types of activity you want to include in your feed.

koku / justfile
271 B 9 lines
1# Install locally (release build) 2install: 3 cargo install --path . 4 ln -sf ~/.cargo/bin/koku ~/.cargo/bin/ku 5 6# Install locally (debug build — fast iteration) 7dev-install: 8 cargo build && cp target/debug/koku ~/.cargo/bin/koku 9 ln -sf ~/.cargo/bin/koku ~/.cargo/bin/ku