Set baseUrl in QA cloud environment (#994)
* Set baseUrl if not deployed to prod server * Add env variable TARGET and use to set baseUrl * remove webPlatformUtilsService.isProdServer * passing the ENV through to the Angular app * switching the value of SELF_HOST back to true * fixing some webpack.config variables * fixing the selfhost angular process.env * removing unecessary code Co-authored-by: Joseph Flinn <joseph.s.flinn@gmail.com>
This commit is contained in:
parent
6586af71f8
commit
da0df3a73b
|
@ -144,9 +144,8 @@ containerService.attachToWindow(window);
|
|||
export function initFactory(): Function {
|
||||
return async () => {
|
||||
await (storageService as HtmlStorageService).init();
|
||||
const isDev = platformUtilsService.isDev();
|
||||
|
||||
if (isDev || platformUtilsService.isSelfHost()) {
|
||||
if (process.env.ENV !== 'production') {
|
||||
environmentService.baseUrl = window.location.origin;
|
||||
} else {
|
||||
environmentService.notificationsUrl = 'https://notifications.bitwarden.com';
|
||||
|
|
|
@ -67,8 +67,8 @@ export class PaymentComponent implements OnInit {
|
|||
this.stripeScript.src = 'https://js.stripe.com/v3/';
|
||||
this.stripeScript.async = true;
|
||||
this.stripeScript.onload = () => {
|
||||
this.stripe = (window as any).Stripe(this.platformUtilsService.isDev() ?
|
||||
WebConstants.stripeTestKey : WebConstants.stripeLiveKey);
|
||||
this.stripe = (window as any).Stripe(process.env.ENV === 'production' ?
|
||||
WebConstants.stripeLiveKey : WebConstants.stripeTestKey);
|
||||
this.stripeElements = this.stripe.elements();
|
||||
this.setStripeElement();
|
||||
};
|
||||
|
|
|
@ -8,15 +8,13 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|||
const TerserPlugin = require('terser-webpack-plugin');
|
||||
const AngularCompilerPlugin = require('@ngtools/webpack').AngularCompilerPlugin;
|
||||
const pjson = require('./package.json');
|
||||
const config = require('./config.js')
|
||||
const config = require('./config.js');
|
||||
|
||||
if (process.env.NODE_ENV == null) {
|
||||
process.env.NODE_ENV = 'development';
|
||||
}
|
||||
const ENV = process.env.ENV == null ? 'development' : process.env.ENV;
|
||||
const NODE_ENV = process.env.NODE_ENV == null ? 'development' : process.env.NODE_ENV;
|
||||
|
||||
const NODE_ENV = process.env.NODE_ENV;
|
||||
const envConfig = config.load(process.env.ENV)
|
||||
config.log(envConfig)
|
||||
const envConfig = config.load(process.env.ENV);
|
||||
config.log(envConfig);
|
||||
|
||||
const moduleRules = [
|
||||
{
|
||||
|
@ -131,7 +129,7 @@ const plugins = [
|
|||
}),
|
||||
new webpack.DefinePlugin({
|
||||
'process.env': {
|
||||
'ENV': JSON.stringify(NODE_ENV),
|
||||
'ENV': JSON.stringify(ENV),
|
||||
'SELF_HOST': JSON.stringify(process.env.SELF_HOST === 'true' ? true : false),
|
||||
'APPLICATION_VERSION': JSON.stringify(pjson.version),
|
||||
'CACHE_TAG': JSON.stringify(Math.random().toString(36).substring(7)),
|
||||
|
|
Loading…
Reference in New Issue