From 735f80d87eb6a7b0137b580a6f1375f7b05abd2f Mon Sep 17 00:00:00 2001 From: Shawn Date: Thu, 18 Apr 2019 17:57:56 +1000 Subject: [PATCH] trail & US environment --- src/environments/environment.trial.ts | 23 +++++++++++++++++++++++ src/environments/environment.us.ts | 23 +++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 src/environments/environment.trial.ts create mode 100644 src/environments/environment.us.ts diff --git a/src/environments/environment.trial.ts b/src/environments/environment.trial.ts new file mode 100644 index 000000000..1479aa4b8 --- /dev/null +++ b/src/environments/environment.trial.ts @@ -0,0 +1,23 @@ +export const environment = { + production: true, + appkey: 'b11e7c189b', + pusherKey: '255f010d210933ca7675', + env: 'live', + APIEndpoint: 'https://trial.practera.com/', + intercomAppId: '', + filestack: { + key: 'AO6F4C72uTPGRywaEijdLz', + s3Config: { + location: 's3', + container: 'practera-aus', + region: 'ap-southeast-2', + paths: { + any: '/appv2/live/uploads/', + image: '/appv2/live/uploads/', + video: '/media/fpvideo/upload/' + } + } + }, + intercom: true, + goMobile: false, +}; diff --git a/src/environments/environment.us.ts b/src/environments/environment.us.ts new file mode 100644 index 000000000..d189763f2 --- /dev/null +++ b/src/environments/environment.us.ts @@ -0,0 +1,23 @@ +export const environment = { + production: true, + appkey: 'b11e7c189b', + pusherKey: '255f010d210933ca7675', + env: 'live', + APIEndpoint: 'https://us.practera.com/', + intercomAppId: '', + filestack: { + key: 'AO6F4C72uTPGRywaEijdLz', + s3Config: { + location: 's3', + container: 'practera-us', + region: 'us-east-1', + paths: { + any: '/appv2/live/uploads/', + image: '/appv2/live/uploads/', + video: '/media/fpvideo/upload/' + } + } + }, + intercom: false, + goMobile: false, +};