mirror of
				https://github.com/SillyTavern/SillyTavern.git
				synced 2025-06-05 21:59:27 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			221 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			221 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| if [ ! -e "config/config.yaml" ]; then
 | |
|     echo "Resource not found, copying from defaults: config.yaml"
 | |
|     cp -r "default/config.yaml" "config/config.yaml"
 | |
| fi
 | |
| 
 | |
| # Start the server
 | |
| exec node server.js --listen
 |