ente/.vscode/launch.json.example

54 lines
1.6 KiB
Plaintext
Raw Normal View History

2023-04-10 04:46:53 +00:00
{
// 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": "Android Prod",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
"args": [
"--flavor",
"independent"
]
},
{
"name": "Android Local",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
"args": [
"--flavor",
"independent",
"--dart-define",
"endpoint=http://localhost:8080",
2023-12-13 03:19:40 +00:00
"--dart-define",
"web-family=http://localhost:3003",
2023-04-10 04:46:53 +00:00
]
},
{
"name": "iOS Prod",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart"
},
{
"name": "iOS Local",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
2023-12-13 03:19:40 +00:00
"args": [
"--dart-define",
"endpoint=http://localhost:8080",
"--dart-define",
"web-family=http://localhost:3003"
]
2023-04-10 04:46:53 +00:00
},
]
}