Skip to content

Commit

Permalink
ready to roll
Browse files Browse the repository at this point in the history
  • Loading branch information
roblyon committed Apr 22, 2022
1 parent 237a8bf commit 0bd7286
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: npm start
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const express = require('express')
const app = express()
const port = 3000
const port = process.env.PORT || 3000

app.use('/', require('./routes'))

Expand Down

0 comments on commit 0bd7286

Please sign in to comment.