Initial commit: Dokku Docker Compose plugin with test infrastructure

This commit is contained in:
Deploy Bot
2025-07-17 20:24:03 -04:00
parent b15de9a244
commit d2a42455a1
19 changed files with 1206 additions and 64 deletions

View File

@@ -0,0 +1,12 @@
{
"name": "simple-nodejs",
"version": "1.0.0",
"description": "A simple Node.js app for testing",
"main": "server.js",
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "^4.17.1"
}
}

View File

@@ -0,0 +1,10 @@
const express = require('express');
const app = express();
const PORT = process.env.PORT || 5000;
app.get('/', (req, res) => {
res.send('Hello from Node.js app!');});
app.listen(PORT, () => {
console.log(`Server running on port ${PORT}`);
});