mirror of
				https://github.com/NginxProxyManager/nginx-proxy-manager.git
				synced 2025-11-04 09:25:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			239 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			239 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/with-contenv bash
 | 
						|
 | 
						|
# This service is DEVELOPMENT only.
 | 
						|
 | 
						|
if [ "$DEVELOPMENT" == "true" ]; then
 | 
						|
	cd /app/frontend || exit 1
 | 
						|
	# If yarn install fails: add --verbose --network-concurrency 1
 | 
						|
	yarn install
 | 
						|
	yarn watch
 | 
						|
else
 | 
						|
	exit 0
 | 
						|
fi
 |