Skip to content

Commit

Permalink
add procfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Gustavo S. de Paula committed Mar 29, 2020
1 parent 5076d4a commit 1961663
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Procfile
Original file line number Diff line number Diff line change
@@ -1 +1 @@
APP_BASE=./backend
web: node backend/src/server.js
2 changes: 1 addition & 1 deletion backend/src/server.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const app = require ('./app')

app.listen(3333);
app.listen(process.env.PORT || 3333);

0 comments on commit 1961663

Please sign in to comment.