mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-21 11:35:34 +01:00
Add EU Prod environment to Web build (#5620)
This commit is contained in:
parent
44f74483d9
commit
bec51c95f9
6
.github/workflows/build-web.yml
vendored
6
.github/workflows/build-web.yml
vendored
@ -80,12 +80,10 @@ jobs:
|
||||
npm_command: "dist:bit:selfhost"
|
||||
- name: "cloud-QA"
|
||||
npm_command: "build:bit:qa"
|
||||
- name: "cloud-POC2"
|
||||
npm_command: "build:bit:poc"
|
||||
- name: "ee"
|
||||
npm_command: "build:bit:ee"
|
||||
- name: "cloud-eudevtest"
|
||||
npm_command: "build:bit:eudevtest"
|
||||
- name: "cloud-euprd"
|
||||
npm_command: "build:bit:euprd"
|
||||
|
||||
steps:
|
||||
- name: Checkout repo
|
||||
|
13
.github/workflows/deploy-prod-web.yml
vendored
Normal file
13
.github/workflows/deploy-prod-web.yml
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
name: Deploy Web - EU Prod - STUB
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
stub-job:
|
||||
name: Stub Job
|
||||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Stub Step
|
||||
run: exit 0
|
11
apps/web/config/euprd.json
Normal file
11
apps/web/config/euprd.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"urls": {
|
||||
"icons": "https://icons.bitwarden.net",
|
||||
"notifications": "https://notifications.bitwarden.net",
|
||||
"scim": "https://scim.bitwarden.net"
|
||||
},
|
||||
"flags": {
|
||||
"secretsManager": true,
|
||||
"showPasswordless": true
|
||||
}
|
||||
}
|
@ -1,11 +0,0 @@
|
||||
{
|
||||
"urls": {
|
||||
"icons": "https://icons.poc2.bitwarden.pw",
|
||||
"notifications": "https://notifications.poc2.bitwarden.pw",
|
||||
"scim": "https://scim.poc2.bitwarden.pw"
|
||||
},
|
||||
"flags": {
|
||||
"secretsManager": true,
|
||||
"showPasswordless": true
|
||||
}
|
||||
}
|
@ -10,7 +10,7 @@
|
||||
"build:bit:dev:analyze": "cross-env LOGGING=false webpack -c ../../bitwarden_license/bit-web/webpack.config.js --profile --json > stats.json && npx webpack-bundle-analyzer stats.json build/",
|
||||
"build:bit:dev:watch": "cross-env ENV=development npm run build:bit:watch",
|
||||
"build:bit:qa": "cross-env NODE_ENV=production ENV=qa npm run build:bit",
|
||||
"build:bit:poc": "cross-env NODE_ENV=production ENV=poc npm run build:bit",
|
||||
"build:bit:euprd": "cross-env NODE_ENV=production ENV=euprd npm run build:bit",
|
||||
"build:bit:eudevtest": "cross-env NODE_ENV=production ENV=eudevtest npm run build:bit",
|
||||
"build:bit:cloud": "cross-env NODE_ENV=production ENV=cloud npm run build:bit",
|
||||
"build:oss:selfhost:watch": "cross-env ENV=selfhosted npm run build:oss:watch",
|
||||
|
Loading…
Reference in New Issue
Block a user