Use a variable to specify API endpoint

This commit is contained in:
Santiago Lo Coco 2023-10-09 21:19:34 -03:00
parent 85084a3e44
commit 1ac6b2a526
4 changed files with 6 additions and 4 deletions

View File

@ -58,7 +58,7 @@ build-client:
script:
- export $(cat context.env | xargs)
- docker build sample-client-users -t ${CLIENT_PROD_IMAGE_NAME}
- docker build sample-client-users -f sample-client-users/Dockerfile.prod -t ${CLIENT_PROD_IMAGE_NAME}
- docker build sample-client-users -f sample-client-users/Dockerfile.test -t ${CLIENT_TEST_IMAGE_NAME}
- docker login -u $CI_REGISTRY_USER --password $CI_JOB_TOKEN $CI_REGISTRY

View File

@ -1,4 +1,5 @@
FROM node:17.9.1 AS app
ENV REACT_APP_ENDPOINT "https://api.fids.slc.ar/"
WORKDIR /app
COPY . .
RUN npm install && npm run build

View File

@ -1,4 +1,5 @@
FROM node:17.9.1 AS app
ENV REACT_APP_ENDPOINT "http://127.0.0.1:5000/"
WORKDIR /app
COPY package.json .
COPY package-lock.json .

View File

@ -2,7 +2,7 @@ import { Axios, AxiosError } from "axios";
import { Credentials, Token, User, Zone } from "./Types";
const instance = new Axios({
baseURL: "http://127.0.0.1:5000/",
baseURL: process.env.REACT_APP_ENDPOINT,
headers: {
accept: "application/json",
"Content-Type": "application/json",