summaryrefslogtreecommitdiff
path: root/playground/config/server.ts
blob: 31c8997c6520b2d4d18de8649a2501474061e452 (plain) (blame)
1
2
3
4
5
6
7
export default ({ env }) => ({
  host: env('HOST', '0.0.0.0'),
  port: env.int('PORT', 1337),
  app: {
    keys: env.array('APP_KEYS'),
  },
});