-
Notifications
You must be signed in to change notification settings - Fork 525
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8b1509
commit 7ebb478
Showing
2 changed files
with
86 additions
and
85 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,3 @@ | ||
|
||
|
||
getting started locally: | ||
|
||
``` | ||
# Build the Rust backend first | ||
cargo build --release # add --features metal or cuda or whatever u need | ||
cd screenpipe-app-tauri | ||
# Install dependencies using Bun | ||
bun i | ||
bun scripts/pre_build.js | ||
bun tauri build | ||
# or bun tauri dev for development environment | ||
``` | ||
|
||
can be more complex on windows | ||
|
||
### macos specific | ||
|
||
louis' macos cursor/vscode settings `.vscode/settings.json`: | ||
|
||
```json | ||
{ | ||
"rust-analyzer.cargo.features": [ | ||
"metal", | ||
"pipes" | ||
], | ||
"rust-analyzer.server.extraEnv": { | ||
"DYLD_LIBRARY_PATH": "${workspaceFolder}/screenpipe-vision/lib:${env:DYLD_LIBRARY_PATH}", | ||
"SCREENPIPE_APP_DEV": "true" | ||
}, | ||
"rust-analyzer.cargo.extraEnv": { | ||
"DYLD_LIBRARY_PATH": "${workspaceFolder}/screenpipe-vision/lib:${env:DYLD_LIBRARY_PATH}", | ||
"SCREENPIPE_APP_DEV": "true" | ||
}, | ||
"terminal.integrated.env.osx": { | ||
"DYLD_LIBRARY_PATH": "${workspaceFolder}/screenpipe-vision/lib:${env:DYLD_LIBRARY_PATH}", | ||
"SCREENPIPE_APP_DEV": "true" | ||
} | ||
} | ||
``` | ||
refer to the [official documentation](https://screenpi.pe/docs/getting-started) for more information. | ||
|