Newer
Older
ExoLauncher / .vscode / launch.json
@楽曲作りまくりおじさん 楽曲作りまくりおじさん 8 hours ago 914 bytes feat: complete ExoLauncher desktop app with SSE and cleaned structure
{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "lldb",
            "request": "launch",
            "name": "Tauri: Debug Rust (Backend)",
            "cargo": {
                "args": [
                    "build"
                ],
                "filter": {
                    "kind": "bin"
                }
            },
            "program": "${workspaceFolder}/src-tauri/target/debug/ExoLauncher.exe",
            "cwd": "${workspaceFolder}/src-tauri",
            "env": {
                "RUST_LOG": "debug"
            },
            "preLaunchTask": "Start Tauri Dev"
        },
        {
            "type": "chrome",
            "request": "launch",
            "name": "Tauri: Debug Frontend (WebView)",
            "url": "http://localhost:5173",
            "webRoot": "${workspaceFolder}/src",
            "preLaunchTask": "Start Tauri Dev"
        }
    ]
}