Skip to content

Commit

Permalink
Added sample app
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottGuymer committed Sep 18, 2024
1 parent 81c42c7 commit 0b1606c
Show file tree
Hide file tree
Showing 5 changed files with 2,341 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# GitHub Actions Workshop Example App

This is a simple example app for use in the GitHub Actions workshop.
11 changes: 11 additions & 0 deletions app/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const express = require('express');
const app = express();
const port = 3000;

app.get('/', (req, res) => {
res.send('Hello, GitHub Actions Workshop!');
});

app.listen(port, () => {
console.log(`Sample app listening at http://localhost:${port}`);
});
Loading

0 comments on commit 0b1606c

Please sign in to comment.