diff --git a/.gitignore b/.gitignore index 9c38ac6..957a43c 100644 --- a/.gitignore +++ b/.gitignore @@ -100,3 +100,6 @@ Desktop.ini # If you have any local secrets or files not to track, add them here: # /path/to/some/file + +package-lock.json +.vscode \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 6b0e5ab..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "postman.settings.dotenv-detection-notification-visibility": false -} \ No newline at end of file diff --git a/api/sample-requests.http b/api/sample-requests.http new file mode 100644 index 0000000..889ba57 --- /dev/null +++ b/api/sample-requests.http @@ -0,0 +1,9 @@ +### Get All Students +POST http://localhost:8000/api/login +content-Type: application/json +Accept: application/json + +{ + "email": "pa@mail.pt", + "password": "123" +} \ No newline at end of file diff --git a/deployment/kubernetes-vue.yml b/deployment/kubernetes-vue.yml index c283891..c67613f 100644 --- a/deployment/kubernetes-vue.yml +++ b/deployment/kubernetes-vue.yml @@ -17,7 +17,7 @@ spec: priorityClassName: low-priority containers: - name: web - image: registry-172.22.21.115.sslip.io/dad-group-x/web:v1.0.0 + image: registry-172.22.21.115.sslip.io/dad-group-46/web:v1.0.1 resources: requests: memory: "64Mi" diff --git a/frontend/index.html b/frontend/index.html index 2b46161..5db9ac1 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -5,7 +5,7 @@ - Vite App + Bisca
diff --git a/frontend/src/main.js b/frontend/src/main.js index 1bb9d08..27177c5 100644 --- a/frontend/src/main.js +++ b/frontend/src/main.js @@ -13,7 +13,7 @@ console.log('[main.js] ws connection', wsConnection) const app = createApp(App) -app.provide('socket', io(wsConnection)) +//app.provide('socket', io(wsConnection)) app.provide('serverBaseURL', `http://${apiDomain}`) app.provide('apiBaseURL', `http://${apiDomain}/api`) diff --git a/frontend/src/pages/login/LoginPage.vue b/frontend/src/pages/login/LoginPage.vue index 7809e98..9dd4ce2 100644 --- a/frontend/src/pages/login/LoginPage.vue +++ b/frontend/src/pages/login/LoginPage.vue @@ -1,5 +1,5 @@