Compare commits

...

4 Commits

2 changed files with 6 additions and 2 deletions

2
README.md Normal file
View File

@ -0,0 +1,2 @@
# hello-cubetiq
Docker Container "Hello CUBETIQ"

View File

@ -3,10 +3,12 @@
var express = require('express')
var app = express()
const PORT = 8080
app.get('/', function (req, res) {
res.send('Hello from CUBETIQ!')
})
app.listen(7000, function () {
console.log('app listening on port 7000!')
app.listen(PORT, function () {
console.log(`app listening on port ${PORT}!`)
})