You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
900 B
36 lines
900 B
import { MyEnvironment } from './my-environment';
|
|
|
|
const baseUrl = 'http://localhost:4200';
|
|
|
|
export const environment = {
|
|
production: false,
|
|
application: {
|
|
baseUrl,
|
|
name: 'EShopOnAbp',
|
|
},
|
|
oAuthConfig: {
|
|
issuer: 'https://localhost:44330',
|
|
redirectUri: baseUrl,
|
|
clientId: 'Web',
|
|
//responseType: 'code',
|
|
scope: 'offline_access openid profile email phone AccountService IdentityService AdministrationService CatalogService OrderingService',
|
|
//requireHttps: true,
|
|
},
|
|
apis: {
|
|
default: {
|
|
url: 'https://localhost:44372',
|
|
rootNamespace: 'EShopOnAbp',
|
|
},
|
|
Catalog: {
|
|
url: 'https://localhost:44354',
|
|
rootNamespace: 'EShopOnAbp.CatalogService',
|
|
},
|
|
Ordering: {
|
|
url: "https://localhost:44356",
|
|
rootNamespace: 'EShopOnAbp.OrderingService',
|
|
}
|
|
},
|
|
mediaServerUrl:'https://localhost:44335'
|
|
} as MyEnvironment;
|
|
|
|
|
|
|