mirror of
				https://github.com/lingble/chatwoot.git
				synced 2025-11-03 20:48:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			170 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			170 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
set -x
 | 
						|
 | 
						|
rm -rf /app/tmp/pids/server.pid
 | 
						|
rm -rf /app/tmp/cache/*
 | 
						|
 | 
						|
pnpm store prune
 | 
						|
pnpm install --force
 | 
						|
 | 
						|
echo "Ready to run Vite development server."
 | 
						|
 | 
						|
exec "$@"
 |