-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* dex oauth test * dex oauth test * AD-82 Update JIRA filter (#70) Signed-off-by: Josef Kopriva <jkopriva@redhat.com> * add login flow to frontend * add login flow to frontend * add login flow to frontend * add login flow to frontend * add login flow to frontend * add login flow to frontend * add login flow to frontend * add login flow to frontend * Add environments to frontend * remove login route --------- Signed-off-by: Josef Kopriva <jkopriva@redhat.com> Co-authored-by: Josef Kopriva <jkopriva@redhat.com> Co-authored-by: Flavius Lacatusu <flacatus@redhat.com>
- Loading branch information
1 parent
7786232
commit f45fbc7
Showing
23 changed files
with
53,995 additions
and
1,999 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,23 @@ | ||
kind: Service | ||
apiVersion: v1 | ||
metadata: | ||
name: quality-frontend-service | ||
annotations: | ||
argocd.argoproj.io/sync-wave: "0" | ||
service.alpha.openshift.io/serving-cert-secret-name: proxy-tls | ||
name: quality-backend-service | ||
namespace: appstudio-qe | ||
labels: | ||
app.kubernetes.io/component: quality-backend | ||
app.kubernetes.io/instance: quality-dashboard | ||
app.kubernetes.io/name: quality-dashboard | ||
spec: | ||
ipFamilies: | ||
- IPv4 | ||
ports: | ||
- name: https | ||
port: 443 | ||
targetPort: 8443 | ||
- name: http | ||
protocol: TCP | ||
port: 9000 | ||
targetPort: 9000 | ||
internalTrafficPolicy: Cluster | ||
ipFamilyPolicy: SingleStack | ||
selector: | ||
app.kubernetes.io/component: quality-frontend | ||
app.kubernetes.io/component: quality-backend | ||
app.kubernetes.io/instance: quality-dashboard | ||
app.kubernetes.io/name: quality-dashboard |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
#!/bin/sh | ||
set -ex | ||
|
||
URL_TO_REPLACE=$(grep REACT_APP_API_SERVER_URL .env | cut -d '=' -f 2) | ||
|
||
sed -i -- "s#$URL_TO_REPLACE#$REACT_APP_API_SERVER_URL#g" "dist/main.bundle.js" | ||
sed -i -- "s#$URL_TO_REPLACE#$REACT_APP_API_SERVER_URL#g" "dist/main.bundle.js.map" | ||
|
||
yarn start | ||
yarn start:dev |
Oops, something went wrong.