From 7691af9157f43cf383bf6ff0e9d9e86cb8031d7e Mon Sep 17 00:00:00 2001 From: Sol Mendiola Date: Thu, 21 Dec 2023 18:02:44 -0300 Subject: [PATCH] added configuration of default environments --- .idea/runConfigurations/main_dev.xml | 11 +++++++ .idea/runConfigurations/main_prod.xml | 11 +++++++ .idea/runConfigurations/main_staging.xml | 11 +++++++ .vscode/launch.json | 38 ++++++++++++++++++++++++ 4 files changed, 71 insertions(+) create mode 100644 .idea/runConfigurations/main_dev.xml create mode 100644 .idea/runConfigurations/main_prod.xml create mode 100644 .idea/runConfigurations/main_staging.xml create mode 100644 .vscode/launch.json diff --git a/.idea/runConfigurations/main_dev.xml b/.idea/runConfigurations/main_dev.xml new file mode 100644 index 0000000..588c150 --- /dev/null +++ b/.idea/runConfigurations/main_dev.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/main_prod.xml b/.idea/runConfigurations/main_prod.xml new file mode 100644 index 0000000..b2efeb3 --- /dev/null +++ b/.idea/runConfigurations/main_prod.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations/main_staging.xml b/.idea/runConfigurations/main_staging.xml new file mode 100644 index 0000000..41722af --- /dev/null +++ b/.idea/runConfigurations/main_staging.xml @@ -0,0 +1,11 @@ + + + + + \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..3689d30 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,38 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "name": "Main Dev", + "request": "launch", + "type": "dart", + "program": "lib/main.dart", + "args": [ + "--flavor=dev", + "--dart-define=ENV=dev", + "--web-port=3003" + ] + }, + { + "name": "Main prod", + "request": "launch", + "type": "dart", + "program": "lib/main.dart", + "args": [ + "--flavor=prod", + "--web-port=3003", + "--dart-define=ENV=prod" + ] + }, + { + "name": "Main staging", + "request": "launch", + "type": "dart", + "program": "lib/main.dart", + "args": [ + "--flavor=staging", + "--web-port=3003", + "--dart-define=ENV=staging" + ] + } + ] +} \ No newline at end of file