Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/IamMuuo/academia into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
IamMuuo committed Dec 14, 2024
2 parents 164dafd + 1168198 commit f806cdf
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
.classpath
.project
.settings/
.vscode/*


# Flutter repo-specific
/bin/cache/
Expand Down
40 changes: 40 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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"
]
}
]
}

0 comments on commit f806cdf

Please sign in to comment.