blob: 74876aec573aae1793cf44287ec2061e8e3deaac (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# makefile is stupid but helps with installation
.PHONY: release run watch
release: target/release/keks-meet
run:
cargo +nightly run --release
watch:
systemfd --no-pid -s http::8080 -- cargo watch -x '+nightly run --features embed_config'
watch-public:
systemfd --no-pid -s http::0.0.0.0:8080 -- cargo watch -x '+nightly run --features embed_config'
target/release/keks-meet: $(shell find src) Cargo.toml
cargo +nightly build --release
|