Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ currently active Spotify device.
### Install dependencies

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\tauri
cd <clone-directory>\apps\tauri
pnpm install
```

### Run the desktop app

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\tauri
cd <clone-directory>\apps\tauri
pnpm tauri dev
```

Expand All @@ -74,7 +74,7 @@ target device, then run `Start Spotify on TV`.
### Run the site

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\site
cd <clone-directory>\apps\site
corepack pnpm install
corepack pnpm dev
```
Expand All @@ -86,21 +86,21 @@ Before opening a pull request, run the checks relevant to your change.
### Rust

```powershell
cd C:\Users\akuma\repos\desk-remote
cd <clone-directory>
cargo check
```

### Tauri frontend

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\tauri
cd <clone-directory>\apps\tauri
cmd /c npm run build
```

### Site

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\site
cd <clone-directory>\apps\site
corepack pnpm build
```

Expand Down
12 changes: 6 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,22 +116,22 @@ speaker, or browser session is available.
### Clone and install

```powershell
git clone <repo-url>
cd desk-remote\apps\tauri
git clone <repo-url> sendo
cd sendo\apps\tauri
pnpm install
```

### Run in development

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\tauri
cd sendo\apps\tauri
pnpm tauri dev
```

### Build Windows installers

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\tauri
cd sendo\apps\tauri
corepack pnpm exec tauri build --bundles nsis,msi
```

Expand All @@ -148,12 +148,12 @@ source archives are not portable Sendo applications.
### Validation

```powershell
cd C:\Users\akuma\repos\desk-remote
cd sendo
cargo check
```

```powershell
cd C:\Users\akuma\repos\desk-remote\apps\tauri
cd sendo\apps\tauri
.\node_modules\.bin\tsc.CMD --noEmit
```

Expand Down