feat(i18n): add bilingual support (Català / Castellano) #41

Merged
Ichitux merged 4 commits from feat/i18n-bilingual-ca-es into main 2026-07-17 08:40:15 +00:00
2 changed files with 6 additions and 4 deletions
Showing only changes of commit be707408b2 - Show all commits
+2 -2
View File
@@ -28,13 +28,13 @@ ENV PUPPETEER_SKIP_CHROMIUM_DOWNLOAD=true
ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium ENV PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium
# Copy package files # Copy package files
COPY package*.json ./ COPY apps/parapharmacy-api/package*.json ./
# Install dependencies (production only) # Install dependencies (production only)
RUN npm install --omit=dev RUN npm install --omit=dev
# Copy source code # Copy source code
COPY src/ ./src/ COPY apps/parapharmacy-api/src/ ./src/
# Expose port # Expose port
EXPOSE 3002 EXPOSE 3002
+4 -2
View File
@@ -89,8 +89,10 @@ services:
parapharmacy-api: parapharmacy-api:
image: git.hacecalor.net/ichitux/farmafinder-parapharmacy-api:latest image: git.hacecalor.net/ichitux/farmafinder-parapharmacy-api:latest
build: build:
context: ./apps/parapharmacy-api context: .
dockerfile: Dockerfile dockerfile: apps/parapharmacy-api/Dockerfile
env_file:
- ./apps/parapharmacy-api/.env
restart: unless-stopped restart: unless-stopped
ports: ports:
- "3002:3002" - "3002:3002"