This commit is contained in:
petrovyuri
2025-01-21 14:24:31 +03:00
parent e7b2c31e86
commit 17d096baac
96 changed files with 3575 additions and 0 deletions

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

@@ -0,0 +1,23 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "dev",
"type": "dart",
"request": "launch",
"program": "${workspaceFolder}/lib/targets/dev.dart",
},
{
"name": "stage",
"type": "dart",
"request": "launch",
"program": "${workspaceFolder}/lib/targets/stage.dart",
},
{
"name": "prod",
"type": "dart",
"request": "launch",
"program": "${workspaceFolder}/lib/targets/prod.dart",
}
]
}