koruai
Version:
AI-powered security monitoring middleware for Express.js applications. Detects anomalies and threats in real-time with intelligent request analysis.
17 lines (16 loc) • 953 B
JavaScript
;
// @ts-nocheck
Object.defineProperty(exports, "__esModule", { value: true });
exports.FETCH_POLICIES_INTERVAL_IN_SECONDS = exports.FETCH_POLICIES_ENDPOINT = exports.REQUEST_COLLECTION_ENDPOINT = void 0;
const environment = "production";
exports.REQUEST_COLLECTION_ENDPOINT = environment === "production"
? "https://request-colletor-api-973817945996.europe-west1.run.app/collect-request"
: environment === "development"
? "https://request-colletor-api-229153978352.europe-west1.run.app/collect-request"
: "http://localhost:3001/collect-request";
exports.FETCH_POLICIES_ENDPOINT = environment === "production"
? "https://clickhouse-reader-api-973817945996.europe-west1.run.app/get-policies"
: environment === "development"
? "https://clickhouse-reader-api-229153978352.europe-west1.run.app/get-policies"
: "http://localhost:3002/get-policies";
exports.FETCH_POLICIES_INTERVAL_IN_SECONDS = 60;