-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Andrew Pennebaker
committed
Apr 8, 2024
1 parent
a4d901f
commit 9e3a03a
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Install: | ||
# | ||
# sudo cp comfyui.service /etc/systemd/system | ||
# sudo systemctl enable comfyui | ||
# sudo systemctl start comfyui | ||
# | ||
# Uninstall: | ||
# | ||
# sudo systemctl stop comftyui | ||
# sudo systemctl disable comfyui | ||
# sudo rm /etc/systemd/system/comfyui.service | ||
|
||
[Unit] | ||
Description=Launch ComfyUI on boot | ||
|
||
[Service] | ||
User=andrew | ||
Group=andrew | ||
ExecStart=python3 /home/andrew/sambashare/ComfyUI/main.py --listen | ||
|
||
[Install] | ||
WantedBy=multi-user.target |