mirror of
				https://github.com/SillyTavern/SillyTavern.git
				synced 2025-06-05 21:59:27 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			338 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| # Initialize missing user files
 | |
| IFS="," RESOURCES="characters,groups,group chats,chats,User Avatars,worlds,settings.json"
 | |
| for R in $RESOURCES; do
 | |
|   if [ ! -e "config/$R" ]; then
 | |
|     echo "Resource not found, copying from defaults: $R"
 | |
|     cp -r "public/$R.default" "config/$R"
 | |
|   fi
 | |
| done
 | |
| 
 | |
| # Start the server
 | |
| exec node server.js
 |