feat: upscale service
All checks were successful
Build and Push RunPod Docker Image / build-and-push (push) Successful in 15s

This commit is contained in:
2025-11-27 12:04:19 +01:00
parent 69bf6af419
commit 44bfa271e3

View File

@@ -90,6 +90,23 @@ stderr_logfile_backups=10
priority=300
stopwaitsecs=10
# Upscale UI Service
[program:upscale]
command=services/upscale/venv/bin/python services/upscale/main.py
directory=.
autostart=false
autorestart=true
startretries=3
stderr_logfile=.logs/upscale.err.log
stdout_logfile=.logs/upscale.out.log
stdout_logfile_maxbytes=50MB
stdout_logfile_backups=10
stderr_logfile_maxbytes=50MB
stderr_logfile_backups=10
environment=UPSCALE_PORT="8080"
priority=400
stopwaitsecs=10
[group:comfyui]
programs=comfyui,webdav-sync
priority=100
@@ -101,3 +118,7 @@ priority=200
[group:audiocraft]
programs=audiocraft
priority=300
[group:upscale]
programs=upscale
priority=400