From d2f4381391e8c104d28ec1f08a9111d0290b107f Mon Sep 17 00:00:00 2001 From: Skyhorizon2021 <locnguyen02152021@gmail.com> Date: Sat, 2 Dec 2023 22:52:54 -0800 Subject: [PATCH 1/2] change message --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 541532ebe..248c079fe 100644 --- a/app.js +++ b/app.js @@ -2,7 +2,7 @@ const express = require('express'); const app = express(); const port = 8080; -app.get('/', (req, res) => res.send('Hello World!')); +app.get('/', (req, res) => res.send('I will be great at AWS Cloud')); app.listen(port); console.log(`App running on http://localhost:${port}`); From 9151a0a0d7be3515568031fa999919f772a33956 Mon Sep 17 00:00:00 2001 From: Skyhorizon2021 <locnguyen02152021@gmail.com> Date: Sun, 3 Dec 2023 14:23:08 -0800 Subject: [PATCH 2/2] Full pipeline test --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 248c079fe..303fe770d 100644 --- a/app.js +++ b/app.js @@ -2,7 +2,7 @@ const express = require('express'); const app = express(); const port = 8080; -app.get('/', (req, res) => res.send('I will be great at AWS Cloud')); +app.get('/', (req, res) => res.send('I love blue')); app.listen(port); console.log(`App running on http://localhost:${port}`);