mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-03-09 16:40:10 +01:00
Merge branch 'release' into staging
This commit is contained in:
commit
bfc0837936
@ -19,7 +19,7 @@ ENV NODE_ENV=production
|
||||
COPY package*.json post-install.js ./
|
||||
RUN \
|
||||
echo "*** Install npm packages ***" && \
|
||||
npm i --no-audit --no-fund --quiet --omit=dev && npm cache clean --force
|
||||
npm i --no-audit --no-fund --loglevel=error --no-progress --omit=dev && npm cache clean --force
|
||||
|
||||
# Bundle app source
|
||||
COPY . ./
|
||||
|
@ -1,7 +1,7 @@
|
||||
@echo off
|
||||
pushd %~dp0
|
||||
set NODE_ENV=production
|
||||
call npm install --no-audit --no-fund --quiet --omit=dev
|
||||
call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev
|
||||
node server.js %*
|
||||
pause
|
||||
popd
|
||||
|
@ -12,7 +12,7 @@ if %errorlevel% neq 0 (
|
||||
)
|
||||
)
|
||||
set NODE_ENV=production
|
||||
call npm install --no-audit --no-fund --quiet --omit=dev
|
||||
call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev
|
||||
node server.js %*
|
||||
pause
|
||||
popd
|
||||
|
@ -95,7 +95,7 @@ if %errorlevel% neq 0 (
|
||||
|
||||
echo Installing npm packages and starting server
|
||||
set NODE_ENV=production
|
||||
call npm install --no-audit --no-fund --quiet --omit=dev
|
||||
call npm install --no-audit --no-fund --loglevel=error --no-progress --omit=dev
|
||||
node server.js %*
|
||||
|
||||
:end
|
||||
|
Loading…
x
Reference in New Issue
Block a user