Added env files and dotenv package

This commit is contained in:
Abdullah Alassaf
2024-09-03 13:41:07 +03:00
parent ece37fc3c1
commit 25b9457043
9 changed files with 108 additions and 45 deletions

61
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,61 @@
{
"configurations": [
{
"name": "DEVELOPMENT",
"request": "launch",
"type": "dart",
"args": [
"--dart-define",
"FLAVOR=development"
],
"flutterMode": "debug"
},{
"name": "STAGING",
"request": "launch",
"type": "dart",
"args": [
"--dart-define",
"FLAVOR=staging"
],
"flutterMode": "debug"
},{
"name": "PRODUCTION",
"request": "launch",
"type": "dart",
"args": [
"--dart-define",
"FLAVOR=production"
],
"flutterMode": "debug"
},
]
}