Created
August 30, 2019 04:17
-
-
Save datvtwkm/bec01ce690467bc0f3dfa79b8e14cda0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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