From 0382bb9d1318b522ad77a0ad382c8edf31f0fd50 Mon Sep 17 00:00:00 2001 From: Alvaro Guadamillas Date: Fri, 13 Oct 2023 19:57:25 +0200 Subject: [PATCH 1/4] fix: be connection --- .env.development | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.env.development b/.env.development index be6bc4f..a1d8624 100644 --- a/.env.development +++ b/.env.development @@ -1,3 +1,3 @@ NODE_ENV= development -VUE_APP_ROOT_URL= https://aguadamillas-be-dev.azurewebsites.net/ +VUE_APP_ROOT_URL= https://aguadamillas-be-dev.azurewebsites.net VUE_APP_ENV_VAR_FILE_NAME= .env.development \ No newline at end of file From 2b74312afc28ebd17913bfcce7d3341de64098b9 Mon Sep 17 00:00:00 2001 From: Alvaro Guadamillas Date: Thu, 29 Aug 2024 12:31:57 +0200 Subject: [PATCH 2/4] add: .vscode --- .gitignore | 2 +- .vscode/launch.json | 27 +++++++++++++++++++++++++++ .vscode/tasks.json | 11 +++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 .vscode/launch.json create mode 100644 .vscode/tasks.json diff --git a/.gitignore b/.gitignore index 85e949c..0543dde 100644 --- a/.gitignore +++ b/.gitignore @@ -130,4 +130,4 @@ dist .pnp.* # VS Code -.vscode \ No newline at end of file +# .vscode \ No newline at end of file diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..0669640 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,27 @@ +{ + // Use IntelliSense to learn about possible attributes. + // Hover to view descriptions of existing attributes. + // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "type": "msedge", + "request": "launch", + "name": "IE Bank Frontend", + "url": "http://localhost:8080", + "webRoot": "${workspaceFolder}", + "breakOnLoad": true, + "pathMapping": { + "/_karma_webpack_": "${workspaceFolder}" + }, + "sourceMapPathOverrides": { + "webpack:/*": "${webRoot}/*", + "/./*": "${webRoot}/*", + "/src/*": "${webRoot}/*", + "/*": "*", + "/./~/*": "${webRoot}/node_modules/*" + }, + "preLaunchTask": "vuejs: start" + } + ] +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..6827386 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,11 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "vuejs: start", + "type": "npm", + "script": "serve -- --mode local", + "isBackground": true + } + ] +} \ No newline at end of file From 86d403abc34002edd4820b77e54fafefa7765eb6 Mon Sep 17 00:00:00 2001 From: Alvaro Guadamillas Date: Thu, 5 Sep 2024 21:00:09 +0200 Subject: [PATCH 3/4] add: gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0543dde..85e949c 100644 --- a/.gitignore +++ b/.gitignore @@ -130,4 +130,4 @@ dist .pnp.* # VS Code -# .vscode \ No newline at end of file +.vscode \ No newline at end of file From cd9a15e6f39173f775eb4fa457fa30a7980f95b3 Mon Sep 17 00:00:00 2001 From: Alvaro Guadamillas Date: Thu, 5 Sep 2024 21:04:07 +0200 Subject: [PATCH 4/4] delete .vscode --- .vscode/launch.json | 27 --------------------------- .vscode/tasks.json | 11 ----------- 2 files changed, 38 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 0669640..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 - "version": "0.2.0", - "configurations": [ - { - "type": "msedge", - "request": "launch", - "name": "IE Bank Frontend", - "url": "http://localhost:8080", - "webRoot": "${workspaceFolder}", - "breakOnLoad": true, - "pathMapping": { - "/_karma_webpack_": "${workspaceFolder}" - }, - "sourceMapPathOverrides": { - "webpack:/*": "${webRoot}/*", - "/./*": "${webRoot}/*", - "/src/*": "${webRoot}/*", - "/*": "*", - "/./~/*": "${webRoot}/node_modules/*" - }, - "preLaunchTask": "vuejs: start" - } - ] -} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 6827386..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "vuejs: start", - "type": "npm", - "script": "serve -- --mode local", - "isBackground": true - } - ] -} \ No newline at end of file