This file contains hidden or 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
{ | |
Tools = ordered() { | |
WirelessLink1 = Fuse.Wireless { | |
CtrlWZoom = false, | |
ViewInfo = OperatorInfo { Pos = { 32.7218, 477.305 } }, | |
Version = 110 | |
} | |
}, | |
ActiveTool = "WirelessLink1" | |
} |
This file contains hidden or 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
{ | |
"last_node_id": 25, | |
"last_link_id": 41, | |
"nodes": [ | |
{ | |
"id": 4, | |
"type": "Width/Height Literal", | |
"pos": [ | |
-209, | |
451 |
This file contains hidden or 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
# The Caddyfile is an easy way to configure your Caddy web server. | |
# | |
# Unless the file starts with a global options block, the first | |
# uncommented line is always the address of your site. | |
# | |
# To use your own domain name (with automatic HTTPS), first make | |
# sure your domain's A/AAAA DNS records are properly pointed to | |
# this machine's public IP, then replace ":80" below with your | |
# domain name. |
This file contains hidden or 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
[ | |
{ | |
"name": "base", | |
"prompt": "{prompt}", | |
"negative_prompt": "" | |
} | |
] |
This file contains hidden or 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
@echo off | |
setlocal enabledelayedexpansion | |
rem Get the main directory | |
set "SCRIPT_DIR=%~dp0" | |
rem Set paths relative | |
set "WATCH_DIR=%SCRIPT_DIR%ComfyUI\custom_nodes" | |
set "RUN_COMFY_SCRIPT=%SCRIPT_DIR%comfyui_manager.bat" | |
set "PID_FILE=%SCRIPT_DIR%comfyui.pid" |
This file contains hidden or 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
#!/usr/bin/env zsh | |
# Get the main directory | |
SCRIPT_DIR="${0:A:h}" | |
# Set paths relative | |
WATCH_DIR="$SCRIPT_DIR/nodes/" # Adjust this path as needed | |
RUN_INVOKEAI_SCRIPT="$SCRIPT_DIR/invoke-web.sh" | |
PID_FILE="$SCRIPT_DIR/invokeai.pid" | |
LOG_FILE="$SCRIPT_DIR/invokeai.log" |
This file contains hidden or 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
#!/usr/bin/env python3 | |
""" | |
MIT License | |
Copyright (c) 2024 itsjustregi (Regi E. [email protected]) | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights |
OlderNewer