1
0
Fork 0
mirror of synced 2026-06-05 14:28:19 +00:00

Merge main into int

This commit is contained in:
Varun Sharma 2024-03-25 17:24:52 -07:00
commit e3c95a1c9c
No known key found for this signature in database
GPG key ID: CE30C1F427CE6272
4 changed files with 3556 additions and 3555 deletions

7099
dist/pre/index.js vendored

File diff suppressed because it is too large Load diff

File diff suppressed because one or more lines are too long

View file

@ -1,5 +1,5 @@
export const STEPSECURITY_ENV = "agent"; // agent or int
export const STEPSECURITY_ENV = "int"; // agent or int
export const STEPSECURITY_API_URL = `https://${STEPSECURITY_ENV}.api.stepsecurity.io/v1`;
export const STEPSECURITY_WEB_URL = "https://app.stepsecurity.io";
export const STEPSECURITY_WEB_URL = "https://int1.stepsecurity.io";

View file

@ -37,10 +37,10 @@ import { isGithubHosted, isTLSEnabled } from "./tls-inspect";
return;
}
var correlation_id = uuidv4();
var env = "int";
var api_url = `https://${env}.api.stepsecurity.io/v1`;
var web_url = "https://int1.stepsecurity.io";
var correlation_id = uuidv4();
var api_url = STEPSECURITY_API_URL;
var web_url = STEPSECURITY_WEB_URL;
let confg: Configuration = {
repo: process.env["GITHUB_REPOSITORY"],