Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 585 Bytes

File metadata and controls

39 lines (27 loc) · 585 Bytes

Claude Code Notes

.NET SDK

The .NET 10 SDK is installed at ~/.dotnet. Add to PATH if needed:

export DOTNET_ROOT="$HOME/.dotnet"
export PATH="$DOTNET_ROOT:$PATH"

Build Commands

# Backend
dotnet build src/Gamarr.sln

# Frontend
yarn install
yarn build

# Run tests
dotnet test src/Gamarr.sln --filter "Category!=AutomationTest"

Git Workflow

Push directly to main:

git push origin gamarr3-work:main

Project Structure

  • src/ - .NET backend
  • frontend/ - React frontend
  • _output/ - Build output
  • _tests/ - Test output