Add new POC web artifact (#4581)

* Add the poc web artifact.

* Fix npm command typo
This commit is contained in:
Joseph Flinn 2023-01-26 13:38:41 -08:00 committed by GitHub
parent f274540896
commit 05dec84f0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 0 deletions

View File

@ -80,6 +80,8 @@ jobs:
npm_command: "dist:bit:selfhost"
- name: "cloud-QA"
npm_command: "build:bit:qa"
- name: "cloud-POC"
npm_command: "build:bit:poc"
- name: "ee"
npm_command: "build:bit:ee"

11
apps/web/config/poc.json Normal file
View File

@ -0,0 +1,11 @@
{
"urls": {
"icons": "https://icons.poc.bitwarden.pw",
"notifications": "https://notifications.poc.bitwarden.pw",
"scim": "https://scim.poc.bitwarden.pw"
},
"flags": {
"secretsManager": true,
"showPasswordless": true
}
}

View File

@ -10,6 +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: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",
"build:bit:selfhost:watch": "cross-env ENV=selfhosted npm run build:bit:watch",