@brewww/authentication-service
Version:
Authenticator service for Brew projects.
12 lines • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.serverConfig = void 0;
const serverConfig = () => ({
environment: process.env.ENVIRONMENT || "dev",
port: process.env.PORT || 3000,
basePath: process.env.BASE_PATH || "/",
corsAllowedOrigins: process.env.CORS_ALLOWED_ORIGINS || "*",
swaggerEnabled: process.env.SWAGGER_ENABLED === "true" || false,
});
exports.serverConfig = serverConfig;
//# sourceMappingURL=server.config.js.map