config.js 294 B

1234567
  1. // Constants
  2. module.exports = {
  3. port: process.env.PORT || 8080
  4. // if you're not using docker-compose for local development, this will default to 8080
  5. // to prevent non-root permission problems with 80. Dockerfile is set to make this 80
  6. // because containers don't have that issue :)
  7. };