BinghamtonBetterBus-v2/.vscode/launch.json
Levi Lesches b3fcb692ad
Add Google Maps to the background (#5)
* Added .env file for Google Map API key

* Added google_maps_flutter

* Added map widget to home page

* Maps is working on first try
2025-04-02 17:14:01 -04:00

22 lines
No EOL
586 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", "--dart-define-from-file=.env"],
},
]
}