mirror of
https://github.com/He4eT/simple-spaceapi.git
synced 2026-05-05 01:47:24 +00:00
7 lines
145 B
TypeScript
7 lines
145 B
TypeScript
export default ({ env }) => ({
|
|
host: env('HOST', '0.0.0.0'),
|
|
port: env.int('PORT', 1337),
|
|
app: {
|
|
keys: env.array('APP_KEYS'),
|
|
},
|
|
});
|