Add server-side folder picker

New GET /api/browse endpoint lists subdirectories at any path.
UI gets a folder icon button next to each path input that opens
a browsable directory tree modal. Escape or Cancel closes it,
clicking a folder navigates into it, Select confirms the choice.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
tocmo
2026-04-04 23:55:42 -04:00
parent 868da9016d
commit c19825c523
8 changed files with 214 additions and 4 deletions

11
.claude/launch.json Normal file
View File

@@ -0,0 +1,11 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "dup-finder-api",
"runtimeExecutable": "uvicorn",
"runtimeArgs": ["main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"],
"port": 8000
}
]
}