Blame view

config/server.js 147 Bytes
Harish Patel committed
1 2 3 4 5 6 7
module.exports = ({ env }) => ({
  host: env('HOST', '0.0.0.0'),
  port: env.int('PORT', 1337),
  app: {
    keys: env.array('APP_KEYS'),
  },
});