2025-11-13 15:16:00 +01:00
|
|
|
{
|
|
|
|
|
// 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": [
|
|
|
|
|
{
|
2026-03-01 00:12:47 +01:00
|
|
|
"name": "SF Development",
|
2025-11-13 15:16:00 +01:00
|
|
|
"cwd": "apps/mobile_app",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"type": "dart",
|
2026-03-01 00:12:47 +01:00
|
|
|
"args": [
|
|
|
|
|
"--flavor",
|
|
|
|
|
"development",
|
|
|
|
|
"--dart-define-from-file=config/development.json"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "SF Staging",
|
|
|
|
|
"cwd": "apps/mobile_app",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"type": "dart",
|
|
|
|
|
"args": [
|
|
|
|
|
"--flavor",
|
|
|
|
|
"staging",
|
|
|
|
|
"--dart-define-from-file=config/staging.json"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"name": "SF Production",
|
|
|
|
|
"cwd": "apps/mobile_app",
|
|
|
|
|
"request": "launch",
|
|
|
|
|
"type": "dart",
|
|
|
|
|
"args": [
|
|
|
|
|
"--flavor",
|
|
|
|
|
"production",
|
|
|
|
|
"--dart-define-from-file=config/production.json"
|
|
|
|
|
]
|
2025-11-13 15:16:00 +01:00
|
|
|
}
|
|
|
|
|
]
|
2026-03-01 00:12:47 +01:00
|
|
|
}
|