mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-02-10 13:32:36 +08:00
11 lines
149 B
Bash
Executable File
11 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Run the first Python script
|
|
python3 main.py &
|
|
|
|
# Wait for 20 seconds
|
|
sleep 20
|
|
|
|
# Run the second Python script
|
|
python3 comfy_runpod.py
|