Compare commits

..

18 Commits

Author SHA1 Message Date
d1ab78d35a change start dockerfile 2023-01-18 17:30:33 +07:00
cd8cc52f18 feat: Adjust route from register to dashboard 2023-01-18 16:18:41 +07:00
4a5e15c55c Merge branch 'bukopin' into devops-staging 2023-01-18 15:55:20 +07:00
dec43f819d Merge branch 'bukopin' into devops-staging 2023-01-18 15:40:21 +07:00
e2cb987ded Merge branch 'bukopin' into devops-staging 2023-01-18 14:17:27 +07:00
e8553ea12f Merge branch 'bukopin' into devops-staging 2023-01-18 13:37:12 +07:00
4a7dfe6d52 feat:
- Revamp Design
- Adjust anomaly in design
2023-01-18 12:30:00 +07:00
5840ec682f fix k8s staging 2023-01-18 12:29:43 +07:00
9e39000483 dockerfile 2023-01-18 12:15:42 +07:00
35ce9e2484 fix error on install && dockerfile 2023-01-18 12:13:08 +07:00
6e83553e86 fix dockerfile 2023-01-18 12:09:02 +07:00
7a4ea8c528 fix dockerfile 2023-01-18 12:07:32 +07:00
c154ccc0f6 Merge pull request 'bukopin' (#1) from bukopin into devops-staging
Reviewed-on: #1
2023-01-18 11:50:37 +07:00
“marselinowidis”
b2a0cc9cdc fix dockerfile 2023-01-17 23:59:19 +07:00
“marselinowidis”
0a482dd766 fix dockerfile 2023-01-17 23:41:42 +07:00
“marselinowidis”
8a8d7c0e74 fix dockerfile 2023-01-17 23:40:55 +07:00
“marselinowidis”
8c02184bd9 fix dockerfile 2023-01-17 23:33:25 +07:00
“marselinowidis”
07634ef503 fix dockerfile 2023-01-17 23:28:01 +07:00
7 changed files with 5937 additions and 12361 deletions

View File

@ -1,7 +1,9 @@
FROM node:8-alpine
RUN apk add --no-cache libc6-compat
RUN apk add --no-cache git
WORKDIR /app
COPY package.json /app
RUN yarn
COPY package.json package-lock.json /app/
RUN npm install
COPY . /app
CMD npm run watch
EXPOSE 8080
CMD npm run start
EXPOSE 7700

View File

@ -17,7 +17,7 @@ spec:
- name: bukopin-redemption-client-react
image: registry-harbor.app.bangun-kreatif.com/bukopin/bukopin-redemption-client-react:<VERSION>
ports:
- containerPort: 8080
- containerPort: 7700
imagePullSecrets:
- name: regcred

View File

@ -18,7 +18,7 @@ spec:
service:
name: bukopin-redemption-client-react
port:
number: 8080
number: 7700
tls:
- hosts:
- "bukopin-fe.k3s.bangun-kreatif.com"

View File

@ -7,7 +7,7 @@ metadata:
run: bukopin-redemption-client-react
spec:
ports:
- port: 8080
- port: 7700
protocol: TCP
selector:
app: bukopin-redemption-client-react

18278
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -73,7 +73,7 @@ export default class ComponentName extends React.Component {
// description: 'Please check your email to continue'
// });
this.props.history.push({
pathname:LINKS.VOUCHERS
pathname:LINKS.DASHBOARD
});
this.setState({isLoading: false, isSuccess: true})
// this

View File

@ -209,7 +209,7 @@ class RegisterPage extends React.Component {
no_rekening : this.state.no_rekening
}
};
this.props.history.push(LINKS.VOUCHERS);
this.props.history.push(LINKS.DASHBOARD);
// this.authStore.register(data).then(res => {
// //message.success("Please check your email to confirm your account");this.props.history.push(LINKS.LOGIN);
// setTimeout(() => {