mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
0c3de595df
- when run without arguments it starts the web-interface - can also be run with your own arguments - if u do so it does not start web unless u do
9 lines
158 B
Bash
Executable File
9 lines
158 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
source "${CONDA_PREFIX}/etc/profile.d/conda.sh"
|
|
conda activate "${PROJECT_NAME}"
|
|
|
|
python scripts/invoke.py \
|
|
${@:---web --host=0.0.0.0}
|