website online working

This commit is contained in:
2025-08-16 21:52:09 -04:00
parent 71a51d1276
commit eeaf45defe
4 changed files with 33 additions and 8 deletions

2
.gitignore vendored
View File

@@ -10,7 +10,7 @@ lerna-debug.log*
node_modules
dist
dist-ssr
*.local
# Editor directories and files
.vscode/*

View File

@@ -3,7 +3,6 @@ FROM node:20.11.1
ENV VITE_BASE_URL="http://localhost:9510"
ENV VITE_AUTO_URL="http://localhost:9514"
ENV VITE_MONEY_URL="http://localhost:9513"
ENV VITE_PRINT_URL="http://localhost:9512"
ENV VITE_COMPANY_ID='1'
@@ -17,6 +16,4 @@ ENV PATH /app/node_modules/.bin:$PATH
RUN npm install
COPY . /app

28
Dockerfile.local Normal file
View File

@@ -0,0 +1,28 @@
FROM node:20.11.1 AS builder
ENV VITE_BASE_URL="http://192.168.1.204:9610"
ENV VITE_AUTO_URL="http://192.168.1.204:9614"
ENV VITE_MONEY_URL="http://192.168.1.204:9613"
ENV VITE_COMPANY_ID='1'
WORKDIR /app
COPY package*.json .
RUN npm ci
COPY . .
RUN npm run build
RUN npm prune --production
FROM nginx:stable-alpine as production-stage
ENV NODE_ENV=production
# Copy the build application from the previous stage to the Nginx container
COPY --from=builder /app/dist /usr/share/nginx/html
# Copy the nginx configuration file
COPY ./nginx/default.conf /etc/nginx/conf.d/default.conf
# Expose the port 80
EXPOSE 80
# Start Nginx to serve the application
CMD ["nginx", "-g", "daemon off;"]

View File

@@ -3,10 +3,10 @@
FROM node:20.11.1 AS builder
ENV VITE_BASE_URL="http://192.168.1.204:9510"
ENV VITE_PRINT_URL="http://192.168.1.204:9512"
ENV VITE_MONEY_URL="http://192.168.1.204:9513"
ENV VITE_AUTO_URL="http://192.168.1.204:9514"
ENV VITE_BASE_URL="https://apioil.edwineames.com"
ENV VITE_MONEY_URL="https://apimoney.edwineames.com"
ENV VITE_AUTO_URL="https://apiauto.edwineames.com"
ENV VITE_COMPANY_ID="1"
ENV NODE_ENV=production