Compare commits

..

No commits in common. "master" and "master" have entirely different histories.

2 changed files with 2 additions and 6 deletions

View File

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

View File

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