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
#!/bin/bash | |
# This file will be executed by init.sh | |
# https://raw.githubusercontent.com/ai-dock/invokeai/main/config/provisioning/default.sh | |
## NOTICE ## | |
## Invoke AI does not support directly downloading models. | |
## You will need to manually scan your $WORKSPACE/storage/ directory | |
### Edit the following arrays to suit your workflow - values must be quoted and separated by newlines or spaces. |
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
#!/bin/bash | |
# This file will be sourced in init.sh | |
# https://raw.githubusercontent.com/ai-dock/comfyui/main/config/provisioning/default.sh | |
# Packages are installed after nodes so we can fix them... | |
DEFAULT_WORKFLOW="https://raw.githubusercontent.com/ai-dock/comfyui/main/config/workflows/flux-comfyui-example.json" |
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
#!/bin/bash | |
source /venv/main/bin/activate | |
COMFYUI_DIR=${WORKSPACE}/ComfyUI | |
# Packages are installed after nodes so we can fix them... | |
APT_PACKAGES=( | |
#"package-1" | |
#"package-2" |
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
#!/bin/bash | |
# This file will be sourced in init.sh | |
# Namespace functions with provisioning_ | |
# https://raw.githubusercontent.com/ai-dock/stable-diffusion-webui/main/config/provisioning/default.sh | |
### Edit the following arrays to suit your workflow - values must be quoted and separated by newlines or spaces. | |
### If you specify gated models you'll need to set environment variables HF_TOKEN and/orf CIVITAI_TOKEN | |
DISK_GB_REQUIRED=30 |