diff --git a/app.js b/app.js index 6c0e13e..cc3a9d0 100644 --- a/app.js +++ b/app.js @@ -1,14 +1,14 @@ -const http = require('http'); +const http = require("http"); const PORT = 8080; const server = http.createServer((req, res) => { - if (req.method === 'GET' && req.url === '/') { - res.writeHead(200, { 'Content-Type': 'text/plain' }); - res.end('7thhh updateee Hello World'); + if (req.method === "GET" && req.url === "/") { + res.writeHead(200, { "Content-Type": "text/plain" }); + res.end("7thhh updateee Hello World"); } else { - res.writeHead(404, { 'Content-Type': 'text/plain' }); - res.end('Not Found'); + res.writeHead(404, { "Content-Type": "text/plain" }); + res.end("Not Found"); } }); diff --git a/boltic-properties.yaml b/boltic-properties.yaml index bcecc6f..1978cb1 100644 --- a/boltic-properties.yaml +++ b/boltic-properties.yaml @@ -1,11 +1,11 @@ -app: "anujbugtest" +app: "helloworldpage" serverlessId: "ce200692-ad45-4edd-b63b-f052f7ce51bb" region: "asia-south1" handler: "handler.handler" language: "nodejs/20" serverlessConfig: - Name: "anujbugtest" + Name: "helloworldpage" Description: "" Runtime: "git" # Environment variables for your serverless function