Skip to content

Commit

Permalink
check for the env port !
Browse files Browse the repository at this point in the history
  • Loading branch information
ewansheldon committed Jul 24, 2023
1 parent bba1615 commit c04dce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const port = 3000 || process.env.PORT;
const port = process.env.PORT || 3000;
const http = require('http');
require('dotenv').config();
const { scheduleLiquidation } = require('./src/liquidation');
Expand Down

0 comments on commit c04dce8

Please sign in to comment.