From 1720d39082f142113d9acd71b1d14e4a85e7e7c9 Mon Sep 17 00:00:00 2001 From: rpurnama1409 Date: Mon, 19 Feb 2024 08:21:44 +0700 Subject: [PATCH 1/2] Update GraphQL and network URLs --- src/utils/graphql.ts | 2 +- src/utils/network.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/graphql.ts b/src/utils/graphql.ts index 70a926a..6f062b1 100644 --- a/src/utils/graphql.ts +++ b/src/utils/graphql.ts @@ -3,7 +3,7 @@ import { ApolloClient, createHttpLink, InMemoryCache } from '@apollo/client/core export const apolloClient = () => { const httpLink = createHttpLink({ - uri: 'http://10.8.0.13:8080/graphql', + uri: 'http://192.168.1.84/:32180/graphql', credentials: 'include', // Include credentials for cross-origin requests }); diff --git a/src/utils/network.ts b/src/utils/network.ts index 9f1783f..3012ef3 100644 --- a/src/utils/network.ts +++ b/src/utils/network.ts @@ -1,7 +1,7 @@ import axios from 'axios' const instance = axios.create({ - baseURL: 'http://10.8.0.13:8443' + baseURL: 'http://192.168.1.84/:32180' }) const getUid = async () => await instance.get('/uid') From 70be5ae9cdce8ce522b91d1ad8833ab032edd3f4 Mon Sep 17 00:00:00 2001 From: Dede Fuji Abdul Date: Mon, 19 Feb 2024 08:28:57 +0700 Subject: [PATCH 2/2] build image --- .github/workflows/docker-image-development.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docker-image-development.yml b/.github/workflows/docker-image-development.yml index db16bb7..ad571d8 100644 --- a/.github/workflows/docker-image-development.yml +++ b/.github/workflows/docker-image-development.yml @@ -24,5 +24,5 @@ jobs: - uses: actions/checkout@v3 - name: Build the Docker image run: | - docker build . -t defuj/apkt-eis:v1.0.0-dev - docker push defuj/apkt-eis:v1.0.0-dev \ No newline at end of file + docker build . -t defuj/apkt-eis:v1.0.1-dev + docker push defuj/apkt-eis:v1.0.1-dev \ No newline at end of file