Files
core_ng/@sammo/gateway/src/gatewayConfig.ts
T
2023-09-22 21:13:33 +09:00

7 lines
211 B
TypeScript

import 'dotenv/config';
import { unwrap } from "@sammo/util";
export const gatewayConfig = {
sessionSecret: unwrap(process.env.GATEWAY_SESSION_SECRET),
port: Number(unwrap(process.env.GATEWAY_PORT)),
};