Browse Source

Add new POC web artifact (#4581)

* Add the poc web artifact.

* Fix npm command typo
pull/4582/head
Joseph Flinn 3 years ago committed by GitHub
parent
commit
05dec84f0f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/build-web.yml
  2. 11
      apps/web/config/poc.json
  3. 1
      apps/web/package.json

2
.github/workflows/build-web.yml

@ -80,6 +80,8 @@ jobs: @@ -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

@ -0,0 +1,11 @@ @@ -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
}
}

1
apps/web/package.json

@ -10,6 +10,7 @@ @@ -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",

Loading…
Cancel
Save