Compare commits

..

3 Commits

Author SHA1 Message Date
835a91e0c5 Merge branch 'master' of https://github.com/CUBETIQ/hello-cubetiq 2020-05-07 19:16:22 +07:00
Sambo Chea
23937fe94f Create README.md 2020-05-07 19:15:59 +07:00
b833729a07 change port to 8080 2020-05-07 19:14:10 +07:00
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}!`)
})