main
parent
95ae2e46af
commit
123a044f63
|
|
@ -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"}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@ import { AppConfig } from './models/environment.model';
|
|||
export const environment: AppConfig = {
|
||||
production: true,
|
||||
rssoUrl: "RSSO_URL",
|
||||
backendUrl: "BACKEND_API_URL"
|
||||
backendUrl: "BACKEND_API_URL",
|
||||
consoleUrl: "CONSOLE_URL"
|
||||
};
|
||||
|
|
|
|||
|
|
@ -5,5 +5,6 @@ import { AppConfig } from './models/environment.model';
|
|||
export const environment: AppConfig = {
|
||||
production: false,
|
||||
rssoUrl: "#",
|
||||
backendUrl: "http://localhost:8080/api"
|
||||
backendUrl: "http://localhost:8080/api",
|
||||
consoleUrl: "https://itsm-dev-neu-smartit.asfinag.at"
|
||||
};
|
||||
|
|
@ -2,4 +2,5 @@ export interface AppConfig {
|
|||
production: boolean;
|
||||
rssoUrl: string;
|
||||
backendUrl: string;
|
||||
consoleUrl: string;
|
||||
}
|
||||
Loading…
Reference in New Issue