- run.sh / run.ps1: load an optional .env for host-specific env vars - .env.example + docs: ComfyUI can run on another host (ROUTER_COMFYUI) - .gitignore: .env Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
22 lines
272 B
Plaintext
22 lines
272 B
Plaintext
# secrets — never commit real keys
|
|
.apikey
|
|
.uncensored_key
|
|
|
|
# local host-specific config
|
|
.env
|
|
|
|
# python / venv
|
|
.venv/
|
|
__pycache__/
|
|
*.pyc
|
|
|
|
# runtime state
|
|
*.pid
|
|
*.log
|
|
|
|
# scratch model definitions (generated by scripts/make-context-variant.sh)
|
|
Modelfile.*
|
|
|
|
# OS
|
|
.DS_Store
|