41 lines
1.5 KiB
TypeScript
41 lines
1.5 KiB
TypeScript
// The file contents for the current environment will overwrite these during build.
|
|
// The build system defaults to the dev environment which uses `environment.ts`, but if you do
|
|
// `ng build --env=prod` then `environment.prod.ts` will be used instead.
|
|
// The list of which env maps to which file can be found in `angular-cli.json`.
|
|
|
|
export const environment = {
|
|
production: false,
|
|
environmentName: 'Testing Environment',//Localhost Environment.
|
|
// apiEndpoint:'http://venbainfotech.com:5000/api/',
|
|
apiEndpoint:'http://192.168.1.23:8080/api/',
|
|
// apiEndpoint:'https://api.venbait.in/api/',
|
|
|
|
//EndUser URL
|
|
endUserUrl: window.location.origin+'/#/customer/',
|
|
mailUrl:window.location.origin,
|
|
|
|
firebase: {
|
|
apiKey: "AIzaSyCKbfDJ5Qf0rDP3WKppa94u9xuVaVabaDw",
|
|
authDomain: "venba-appointment.firebaseapp.com",
|
|
projectId: "venba-appointment",
|
|
storageBucket: "venba-appointment.appspot.com",
|
|
messagingSenderId: "513912226817",
|
|
appId: "1:513912226817:web:eebcec6f7c6407a1dd2c00",
|
|
measurementId: "G-48RM8BFRFK"
|
|
},
|
|
|
|
// web:{
|
|
// client_id:"1070360493694-f47l99s7bjqf7of1n7amgkg3mfk7l425.apps.googleusercontent.com",
|
|
// project_id:"neon-nexus-386307",
|
|
// auth_uri:"https://accounts.google.com/o/oauth2/auth",
|
|
// token_uri:"https://oauth2.googleapis.com/token",
|
|
// auth_provider_x509_cert_url:"https://www.googleapis.com/oauth2/v1/certs",
|
|
// client_secret:"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",
|
|
// redirect_uris:["http://localhost:4200"],
|
|
// javascript_origins:["http://localhost:4200"]
|
|
// }
|
|
|
|
|
|
|
|
}
|