main #4

Merged
mondo merged 4 commits from main into pipeline 2025-10-16 21:14:56 -05:00
2 changed files with 8 additions and 4 deletions
Showing only changes of commit 18e70cd445 - Show all commits

View File

@@ -29,6 +29,7 @@ API_PORT=8000
MAX_UPLOAD_SIZE=524288000 MAX_UPLOAD_SIZE=524288000
# NPM Configuration (for frontend build) # NPM Configuration (for frontend build)
# Leave blank or set to https://registry.npmjs.org/ for default npm registry # Default: https://registry.npmjs.org/ (public npm registry)
# Set to your custom npm proxy/registry URL if needed (e.g., http://your-nexus-server:8081/repository/npm-proxy/) # For restricted environments, set to your custom npm proxy/registry URL
NPM_REGISTRY= # Example: http://your-nexus-server:8081/repository/npm-proxy/
NPM_REGISTRY=https://registry.npmjs.org/

View File

@@ -38,7 +38,10 @@ services:
app: app:
container_name: warehouse13-app container_name: warehouse13-app
build: . build:
context: .
args:
NPM_REGISTRY: ${NPM_REGISTRY:-https://registry.npmjs.org/}
ports: ports:
- "8000:8000" - "8000:8000"
environment: environment: