Skip to content

Instantly share code, notes, and snippets.

@datvtwkm
Created August 30, 2019 04:17
Show Gist options
  • Save datvtwkm/bec01ce690467bc0f3dfa79b8e14cda0 to your computer and use it in GitHub Desktop.
Save datvtwkm/bec01ce690467bc0f3dfa79b8e14cda0 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Development",
"request": "launch",
"type": "dart",
"program": "lib/main_development.dart",
"args": [
"--flavor",
"development"
]
},
{
"name": "Staging",
"request": "launch",
"type": "dart",
"program": "lib/main_staging.dart",
"args": [
"--flavor",
"staging"
]
},
{
"name": "Production",
"request": "launch",
"type": "dart",
"program": "lib/main_production.dart",
"args": [
"--flavor",
"production"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment