plano/crates/.vscode/launch.json

24 lines
663 B
JSON
Raw Normal View History

2025-07-11 16:42:16 -07:00
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug Brightstaff",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/target/debug/brightstaff",
"args": [],
"cwd": "${workspaceFolder}",
"stopOnEntry": false,
"sourceLanguages": ["rust"],
"env": {
"RUST_LOG": "debug",
"RUST_BACKTRACE": "1",
2026-02-05 16:10:21 -08:00
"ARCH_CONFIG_PATH_RENDERED": "../demos/use_cases/multi_agent_with_crewai_langchain/config.yaml_rendered",
2026-01-28 20:38:54 -08:00
"OTEL_COLLECTOR_URL": "http://localhost:4317",
"OTEL_TRACING_ENABLED": "true"
2025-07-11 16:42:16 -07:00
},
"preLaunchTask": "rust: cargo build"
}
]
}