BinghamtonBetterBus-v2/.vscode/launch.json
Levi Lesches dc9a3b0e1d
Function client to send GET /path to server (#4)
* Created default project

* Added client to .vscode/launch.json

* Ignore .vscode/settings.json

* Some data scraping

* Client skeleton

* Client data types and fromJson() functions

* Final touches on JSON

* Added ApiService

* ApiService changes

* Prototype for stops

* ViewModel and UI

* Basic client UI
2025-04-02 15:39:57 -04:00

22 lines
No EOL
553 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "client (windows)",
"cwd": "src\\client",
"request": "launch",
"type": "dart",
"args": ["-d", "windows"]
},
{
"name": "client (web)",
"cwd": "src\\client",
"request": "launch",
"type": "dart",
"args": ["-d", "chrome"]
},
]
}