Skip to content

Latest commit

 

History

History
48 lines (30 loc) · 829 Bytes

File metadata and controls

48 lines (30 loc) · 829 Bytes

Contributing Guide


Repository path conventions

Use canonical frontend paths only:

  • apps/desktop/web/src
  • apps/desktop/web/static

Do not recreate or rely on root-level src / static compatibility links.


Safe staging workflow

# safest overall
git add -A .

# explicit/surgical alternative for frontend-only changes
git add -A -- apps/desktop/web/src apps/desktop/web/static

VS Code Source Control tip

When large refactors/moves are present, prefer Stage All Changes.


Quick diagnostics

# inspect staged changes
git status --short

# verify canonical frontend folders
ls -la apps/desktop/web

Additional references

  • Main project overview: README.md
  • Troubleshooting guide: TROUBLESHOOTING.md
  • Agent/developer operational notes: AGENTS.md