Initial public release

This commit is contained in:
2026-07-16 12:08:54 +10:00
commit 07fe81b462
12 changed files with 1554 additions and 0 deletions
Executable
+16
View File
@@ -0,0 +1,16 @@
#!/usr/bin/env bash
set -euo pipefail
cd "$(dirname "$0")"
CONFIG="$HOME/.config/zed-bridge/config.json"
if [[ ! -f "$CONFIG" ]]; then
echo "No config found at $CONFIG"
echo "Copy config.example.json there and edit it:"
echo " mkdir -p ~/.config/zed-bridge"
echo " cp config.example.json $CONFIG"
exit 1
fi
cargo build --release --quiet
exec ./target/release/zed-bridge