Skip to content

Commit

Permalink
testing deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
mohammed-bahumaish committed May 15, 2023
1 parent 6ae327f commit 1c68569
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
var port = process.env.PORT || 3000;
var express = require('express');
var express = require("express");
var app = express();

app.get('/', function (req, res) {
res.send("Hello GitHub Actions Streaming - github-actions-deploy-docker-to-ec2");
app.get("/", function (req, res) {
res.send("Hello world");
});

app.listen( port, function () {
app.listen(port, function () {
console.log(`Listening on port ${port}!`);
});

0 comments on commit 1c68569

Please sign in to comment.