Skip to content

Instantly share code, notes, and snippets.

@marcoleonardini
Last active July 7, 2021 15:45
Show Gist options
  • Save marcoleonardini/e43f58fb2ce83d9165cc80467dbdebde to your computer and use it in GitHub Desktop.
Save marcoleonardini/e43f58fb2ce83d9165cc80467dbdebde to your computer and use it in GitHub Desktop.
VScode launch json ResortPass
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "flutter_mobile_frontend",
"request": "launch",
"type": "dart",
"args": [
"--flavor", "stage","--dart-define", "app.env=stage"
]
},
{
"name": "flutter_mobile_frontend (profile mode)",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "formatted_share",
"cwd": "formatted_share",
"request": "launch",
"type": "dart"
},
{
"name": "formatted_share (profile mode)",
"cwd": "formatted_share",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "klaviyo",
"cwd": "klaviyo",
"request": "launch",
"type": "dart"
},
{
"name": "klaviyo (profile mode)",
"cwd": "klaviyo",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
},
{
"name": "example",
"cwd": "formatted_share/example",
"request": "launch",
"type": "dart"
},
{
"name": "example (profile mode)",
"cwd": "formatted_share/example",
"request": "launch",
"type": "dart",
"flutterMode": "profile"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment