Remove deprecated NPM deployment path

This commit is contained in:
dirtydishes 2026-05-08 04:16:53 -04:00
parent cf7ddf3dea
commit 1c0e2e515b
8 changed files with 64 additions and 198 deletions

View file

@ -6,17 +6,19 @@ CLICKHOUSE_DATABASE=default
REDIS_URL=redis://redis:6379
API_PORT=4000
API_BIND_IP=127.0.0.1
API_HOST_PORT=4000
WEB_BIND_IP=127.0.0.1
WEB_HOST_PORT=3000
REST_DEFAULT_LIMIT=200
API_DELIVER_POLICY=new
API_CONSUMER_RESET=false
NPM_SHARED_NETWORK=npm-shared
# Recommended with NPM on the same Docker network:
# app.<domain> -> web:3000
# api.<domain> -> api:4000
# Leave NEXT_PUBLIC_API_URL empty to use same-origin mode
# (app.<domain> serves UI and proxies API paths to api:4000).
# Public web build target:
# - Set NEXT_PUBLIC_API_URL=https://api.example.com when an external proxy
# or load balancer serves the API on a distinct origin.
# - Leave NEXT_PUBLIC_API_URL empty to use same-origin mode and proxy API
# paths to the published API host port yourself.
NEXT_PUBLIC_API_URL=https://api.example.com
NEXT_PUBLIC_NBBO_MAX_AGE_MS=1000