From 1e9f3954ad93f672246425edc33a1bd7abdb2649 Mon Sep 17 00:00:00 2001 From: Eslam Mohamed <70959607+EslamMohmed@users.noreply.github.com> Date: Sun, 15 Dec 2024 15:42:19 +0300 Subject: [PATCH] Update app.js --- nodeapp/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeapp/app.js b/nodeapp/app.js index 9e562bb..ce5e619 100644 --- a/nodeapp/app.js +++ b/nodeapp/app.js @@ -2,7 +2,7 @@ const express = require('express') const app = express() const port = 3000 app.get('/', (req, res) => { - res.send('Hello World from ITI 44') + res.send('Hello, this is the first jenkins demo') }) app.listen(port, () => {