initial commit

This commit is contained in:
2026-03-22 02:25:16 +01:00
commit eb72820ce9
42 changed files with 2506 additions and 0 deletions
Executable
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
set -e
echo "Building Hush with AOT compilation..."
dotnet publish Hush.slnx -c Release -r linux-x64 -p:PublishAot=true
echo ""
echo "Build complete!"
echo "Binary location:"
echo " - Hush.Cli: Hush.Cli/bin/Release/net10.0/linux-x64/publish/Hush.Cli"
echo ""
echo "The daemon is not a separate binary. Start it with: hush daemon"