Skip to content

Instantly share code, notes, and snippets.

@rifkyputra
Last active April 21, 2022 11:54
Show Gist options
  • Select an option

  • Save rifkyputra/e7d6a75c70cbcdcca5308018b88eb881 to your computer and use it in GitHub Desktop.

Select an option

Save rifkyputra/e7d6a75c70cbcdcca5308018b88eb881 to your computer and use it in GitHub Desktop.
launch json grpc chat
{
"configurations": [
{
"name": "On Emulator (Debug Dev)",
"type": "dart",
"request": "launch",
"program": "lib/main.dart",
"flutterMode": "debug",
"args": [
"--dart-define=GRPC_PORT=54242",
"--dart-define=GRPC_ADDR=10.0.2.2"
]
},
{
"name": "On Device (Debug Dev)",
"type": "dart",
"request": "launch",
"program": "lib/main.dart",
"flutterMode": "debug",
"args": [
"--dart-define=GRPC_PORT=54242",
"--dart-define=GRPC_ADDR=192.168.1.2"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment