Add localhost configurations

This commit is contained in:
vishnukvmd 2021-08-23 02:45:06 +05:30
parent 4c577a51a3
commit d8851bf2f3

26
.vscode/launch.json vendored
View file

@ -15,12 +15,36 @@
"independent"
]
},
{
"name": "Android Local",
"request": "launch",
"type": "dart",
"flutterMode": "debug",
"program": "lib/main.dart",
"args": [
"--flavor",
"independent",
"--dart-define",
"endpoint=http://localhost:8080",
]
},
{
"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",
"args": [
"--dart-define",
"endpoint=http://localhost:8080",
]
},
]
}