mirror of
				https://github.com/ajnart/homarr.git
				synced 2025-10-31 18:46:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			258 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| echo "Exporting hostname..."
 | |
| export NEXTAUTH_URL_INTERNAL="http://$HOSTNAME:7575"
 | |
| 
 | |
| echo "Pushing database changes..."
 | |
| npm config set update-notifier false
 | |
| npx prisma db push --skip-generate
 | |
| 
 | |
| echo "Starting production server..."
 | |
| node /app/server.js |