Skip to content

Instantly share code, notes, and snippets.

@abohmeed
Last active December 13, 2020 14:29
Show Gist options
  • Save abohmeed/2f791d82e3c8be94dfd917cfbe8f2299 to your computer and use it in GitHub Desktop.
Save abohmeed/2f791d82e3c8be94dfd917cfbe8f2299 to your computer and use it in GitHub Desktop.
Sample CI/CD pipeline on AWS files
var express = require("express");
var app = express();
app.use(express.json())
app.get("/", (req, res, next) => {
res.json({message: "Hello World"});
});
app.listen(3000, () => {
console.log("Server running on port 3000");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment