The .NET 10 SDK is installed at ~/.dotnet. Add to PATH if needed:
export DOTNET_ROOT="$HOME/.dotnet"
export PATH="$DOTNET_ROOT:$PATH"# Backend
dotnet build src/Gamarr.sln
# Frontend
yarn install
yarn build
# Run tests
dotnet test src/Gamarr.sln --filter "Category!=AutomationTest"Push directly to main:
git push origin gamarr3-work:mainsrc/- .NET backendfrontend/- React frontend_output/- Build output_tests/- Test output