Compare commits

..

No commits in common. "13659fc5b56fa7f9133d0c8cbd97a4498685f4c2" and "67db40dd665652c7ad7ead80b6f1a3e9325dbcc3" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
web: npm start
web: npm run start

View File

@ -1,7 +1,7 @@
const express = require('express')
const os = require('os')
const app = express()
const port = process.env.PORT || 5000
const port = 3000
app.get('/', (req, res) => {
res.json({
@ -13,4 +13,4 @@ app.get('/', (req, res) => {
app.listen(port, () => {
console.log(`Example app listening on port ${port}`)
})
})