Manuel Tauber 2024-08-20 13:16:25 +02:00
parent 95ae2e46af
commit 123a044f63
4 changed files with 8 additions and 5 deletions

View File

@ -1 +1 @@
{"production":false,"rssoUrl":"http://orf.at","backendUrl":"http://localhost:8080/api"} {"production":false,"rssoUrl":"http://orf.at","backendUrl":"http://localhost:8080/api", "consoleUrl": "https://itsm-dev-neu-smartit.asfinag.at"}

View File

@ -3,5 +3,6 @@ import { AppConfig } from './models/environment.model';
export const environment: AppConfig = { export const environment: AppConfig = {
production: true, production: true,
rssoUrl: "RSSO_URL", rssoUrl: "RSSO_URL",
backendUrl: "BACKEND_API_URL" backendUrl: "BACKEND_API_URL",
consoleUrl: "CONSOLE_URL"
}; };

View File

@ -5,5 +5,6 @@ import { AppConfig } from './models/environment.model';
export const environment: AppConfig = { export const environment: AppConfig = {
production: false, production: false,
rssoUrl: "#", rssoUrl: "#",
backendUrl: "http://localhost:8080/api" backendUrl: "http://localhost:8080/api",
}; consoleUrl: "https://itsm-dev-neu-smartit.asfinag.at"
};

View File

@ -2,4 +2,5 @@ export interface AppConfig {
production: boolean; production: boolean;
rssoUrl: string; rssoUrl: string;
backendUrl: string; backendUrl: string;
} consoleUrl: string;
}