2021-09-08 10:25:15 +02:00
|
|
|
module.exports = ({ env }) => ({
|
|
|
|
host: env('HOST', '0.0.0.0'),
|
|
|
|
port: env.int('PORT', 1337),
|
2022-02-09 18:02:55 +01:00
|
|
|
app: {
|
|
|
|
keys: env.array('APP_KEYS', ['toBeModified1', 'toBeModified2']),
|
2021-09-08 10:25:15 +02:00
|
|
|
},
|
|
|
|
});
|