Update frontend environments

This commit is contained in:
2023-01-07 12:53:04 +01:00
parent 8a7dd3ba9c
commit 7b6f86119c
7 changed files with 33 additions and 8 deletions

View File

@@ -1,10 +1,15 @@
export const environment = {
appTitle: "#{appTitle}#",
appEnvironment: "#{app-environment}#",
production: true,
api: {
url: "https://diunabi.bim-it.pl/api"
url: "#{api-url}#"
},
google: {
clientId: "107631825312-bkfe438ehr9k9ecb2h76g802tj6advma.apps.googleusercontent.com"
clientId: "#{google-frontend-client-id}#"
},
views: {
layers: {
recordColumns: "#{views-layers-recordColumns}#"
}
}
};
};

View File

@@ -3,7 +3,7 @@
// The list of file replacements can be found in `angular.json`.
export const environment = {
appTitle: "DEV",
appEnvironment: "local",
production: false,
api: {
//url: "http://localhost:5400/api"
@@ -11,6 +11,11 @@ export const environment = {
},
google: {
clientId: "107631825312-bkfe438ehr9k9ecb2h76g802tj6advma.apps.googleusercontent.com"
},
views: {
layers: {
recordColumns: "code|value|desc1"
}
}
};