Skip to content

Commit

Permalink
Merge pull request #31 from wearefuturegov/feature/node_port
Browse files Browse the repository at this point in the history
PORT over NODE_PORT
  • Loading branch information
apricot13 authored May 1, 2024
2 parents 81020bc + 3a4ce9d commit 9a56545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const v1 = require("./src/controllers/v1")

const router = express.Router()
const server = express()
const port = process.env.NODE_PORT || 3000
const port = process.env.PORT || 3000
const environment = process.env.NODE_ENV || "production"
const isDevelopment = environment === "development"

Expand Down

0 comments on commit 9a56545

Please sign in to comment.