1
0

feat: Add Native AOT compilation and source-generated JSON serialization, streamline CLI arguments, and remove translation functionality.

This commit is contained in:
2026-02-26 21:40:17 +01:00
parent c2f4cbbfb2
commit fbff8c98ff
7 changed files with 43 additions and 33 deletions

12
install.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
# Exit immediately if a command exits with a non-zero status
set -e
echo "Building Toak Native AOT executable..."
dotnet publish -c Release -r linux-x64
echo "Installing to /usr/bin/toak... (This may prompt for your sudo password)"
sudo cp bin/Release/net10.0/linux-x64/publish/Toak /usr/bin/toak
echo "Installation complete! You can now run 'toak' from anywhere."