mirror of
				https://github.com/SillyTavern/SillyTavern.git
				synced 2025-06-05 21:59:27 +02:00 
			
		
		
		
	1. Set NODE_ENV to production and skip dev dependencies when running from scripts. 2. Remove pkg leftovers. Indicate current environment instead.
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
if ! command -v npm &> /dev/null
 | 
						|
then
 | 
						|
    read -p "npm is not installed. Do you want to install nodejs and npm? (y/n)" choice
 | 
						|
    case "$choice" in
 | 
						|
      y|Y )
 | 
						|
        echo "Installing nvm..."
 | 
						|
        export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
 | 
						|
        [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
 | 
						|
        curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
 | 
						|
        source ~/.bashrc
 | 
						|
        nvm install --lts
 | 
						|
        nvm use --lts;;
 | 
						|
      n|N )
 | 
						|
        echo "Nodejs and npm will not be installed."
 | 
						|
        exit;;
 | 
						|
      * )
 | 
						|
        echo "Invalid option. Nodejs and npm will not be installed."
 | 
						|
        exit;;
 | 
						|
    esac
 | 
						|
fi
 | 
						|
 | 
						|
# if running on replit patch whitelist
 | 
						|
if [ ! -z "$REPL_ID" ]; then
 | 
						|
  echo -e "Running on Repl.it... \nPatching Whitelist..."
 | 
						|
  sed -i 's|whitelistMode = true|whitelistMode = false|g' "config.conf"
 | 
						|
fi
 | 
						|
 | 
						|
echo "Installing Node Modules..."
 | 
						|
export NODE_ENV=production
 | 
						|
npm i --no-audit --no-fund --quiet --omit=dev
 | 
						|
 | 
						|
echo "Entering SillyTavern..."
 | 
						|
node "$(dirname "$0")/server.js" "$@"
 |