Update Flutter run and build commands, and added main_staging file

This commit is contained in:
Abdullah Alassaf
2025-04-22 02:33:50 +03:00
parent 5d16555748
commit b901791079
6 changed files with 157 additions and 63 deletions

39
.vscode/launch.json vendored
View File

@ -10,11 +10,14 @@
"type": "dart",
"args": [
"--dart-define",
"FLAVOR=development"
"-d",
"chrome",
"--web-port",
"3000",
"--flavor",
"development",
"-t",
"lib/main_dev.dart",
],
"flutterMode": "debug"
@ -28,11 +31,14 @@
"type": "dart",
"args": [
"--dart-define",
"FLAVOR=staging"
"-d",
"chrome",
"--web-port",
"3000",
"--flavor",
"staging",
"-t",
"lib/main_staging.dart",
],
"flutterMode": "debug"
@ -46,11 +52,14 @@
"type": "dart",
"args": [
"--dart-define",
"FLAVOR=production"
"-d",
"chrome",
"--web-port",
"3000",
"--flavor",
"production",
"-t",
"lib/main_staging.dart",
],
"flutterMode": "debug"