build image

This commit is contained in:
rpurnama1409 2024-02-19 10:59:49 +07:00
parent e2e6dd133e
commit 045636a484
3 changed files with 4 additions and 4 deletions

View File

@ -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
docker build . -t defuj/apkt-eis:v0.0.24-dev
docker push defuj/apkt-eis:v0.0.24-dev

View File

@ -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
});

View File

@ -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')