Merge pull request #2898 from Yukeey07/patch-1

Update README with Windows dependency copy instructions
This commit is contained in:
Jamie Pine 2025-12-08 18:30:27 -08:00 committed by GitHub
commit 9e25625285
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -226,6 +226,10 @@ bun install
cargo run -p xtask -- setup # generates .cargo/config.toml with aliases
cargo build # builds all core and apps (including the daemon and cli)
# Copy dependencies into the debug Folder ( probably windows only )
Copy-Item -Path "apps\.deps\lib\*.dll" -Destination "target\debug" -ErrorAction SilentlyContinue
Copy-Item -Path "apps\.deps\bin\*.dll" -Destination "target\debug" -ErrorAction SilentlyContinue
# Run the desktop app (automatically starts daemon)
cd apps/tauri
bun run tauri:dev