diff --git a/api-gateway/.gitignore b/api-gateway/.gitignore index b8668a3..a7ced31 100644 --- a/api-gateway/.gitignore +++ b/api-gateway/.gitignore @@ -1 +1,2 @@ -/api-gateway-env \ No newline at end of file +/api-gateway-env +application.zip \ No newline at end of file diff --git a/api-gateway/application.zip b/api-gateway/application.zip index 33df24d..8481df0 100644 Binary files a/api-gateway/application.zip and b/api-gateway/application.zip differ diff --git a/client/src/App.js b/client/src/App.js index 4741111..63b77f9 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -6,7 +6,7 @@ import Modal from './modal'; const healthCheck = () => { fetch(gatewayUrl + '/health-check') .then(response => response.json()) - .then(data => alert("The server is alive and says " + data)) + .then(data => alert("The server is alive and says " + data.body)) } const App = () => {