mirror of
				https://github.com/AbdBarho/stable-diffusion-webui-docker.git
				synced 2025-10-31 02:03:32 -04:00 
			
		
		
		
	* update folders * Update CI * Update CI * Unify base docker images * Remove dead config * Update permissions * Remove CPU Hack * Update hlky * Add Download Service * Adapt services * executable * remove buggy parameter * rename to SHA * Update README
		
			
				
	
	
		
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			361 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| import sys
 | |
| from pathlib import Path
 | |
| 
 | |
| file = Path(sys.argv[1])
 | |
| file.write_text(
 | |
|   file.read_text()\
 | |
|   .replace('    return demo', """
 | |
|     with demo:
 | |
|         gr.Markdown(
 | |
|           'Created by [AUTOMATIC1111 / stable-diffusion-webui-docker](https://github.com/AbdBarho/stable-diffusion-webui-docker/tree/master/AUTOMATIC1111)'
 | |
|         )
 | |
|     return demo
 | |
| """, 1)
 | |
| )
 |