mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-03 13:33:24 +00:00 
			
		
		
		
	This may require just doing an mv on the home directory, plus changing the home directory in /etc/passwd. It should of course be done carefully. (imported from commit 660997d897ee6d33563af74f0fc5d4267a911755)
		
			
				
	
	
		
			10 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			162 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
export HOME=/home/zulip
 | 
						|
export PATH="/home/zulip/.rbenv/bin:$PATH"
 | 
						|
 | 
						|
eval "$(rbenv init -)"
 | 
						|
 | 
						|
cd /home/zulip/graphiti
 | 
						|
exec bundle exec unicorn -p 8088
 |