diff --git a/.gitignore b/.gitignore index 005c0db..401bc78 100644 --- a/.gitignore +++ b/.gitignore @@ -21,7 +21,7 @@ .classpath .project .settings/ -.vscode/* + # Flutter repo-specific /bin/cache/ diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..15340df --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,40 @@ +{ + "configurations": [ + { + "name": "Launch Development flavor", + "type": "dart", + "request": "launch", + "program": "lib/main_development.dart", + "args": [ + "--flavor", + "development", + "--target", + "lib/main_development.dart" + ] + }, + { + "name": "Launch Staging flavor", + "type": "dart", + "request": "launch", + "program": "lib/main_staging.dart", + "args": [ + "--flavor", + "staging", + "--target", + "lib/main_staging.dart" + ] + }, + { + "name": "Launch Production flavor", + "type": "dart", + "request": "launch", + "program": "lib/main_production.dart", + "args": [ + "--flavor", + "production", + "--target", + "lib/main_production.dart" + ] + } + ] +} \ No newline at end of file