ente/mobile/docs/vscode/launch.json

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