From 045636a4844f0d5b6c25d5f20e4888e2aece1f3a Mon Sep 17 00:00:00 2001 From: rpurnama1409 Date: Mon, 19 Feb 2024 10:59:49 +0700 Subject: [PATCH] build image --- .github/workflows/docker-image-development.yml | 4 ++-- src/utils/graphql.ts | 2 +- src/utils/network.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image-development.yml b/.github/workflows/docker-image-development.yml index 90f9314..c7f065c 100755 --- 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:v0.0.23-dev - docker push defuj/apkt-eis:v0.0.23-dev \ No newline at end of file + docker build . -t defuj/apkt-eis:v0.0.24-dev + docker push defuj/apkt-eis:v0.0.24-dev \ No newline at end of file diff --git a/src/utils/graphql.ts b/src/utils/graphql.ts index c0ec287..737360b 100755 --- 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:32169/graphql', + uri: 'http://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 47dc6df..36e42a7 100755 --- a/src/utils/network.ts +++ b/src/utils/network.ts @@ -1,7 +1,7 @@ import axios from 'axios' const instance = axios.create({ - baseURL: 'http://192.168.1.84/:32180' + baseURL: 'http://192.168.1.84:32181' }) const getUid = async () => await instance.get('/uid')