c1e13867d9
- auto:36a0ba357a
- History tab should be working, closes #138 - hlky:bd57d22f2e
- experimental support for the streamlit UI, use the env var `USE_STREAMLIT`, see the `docker-compose.yml` file, closes #105 - Don't create issues if it fails, it is still very early in dev.
11 lines
275 B
Bash
Executable File
11 lines
275 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -Eeuo pipefail
|
|
|
|
echo "USE_STREAMLIT = ${USE_STREAMLIT}"
|
|
if [ "${USE_STREAMLIT}" == "1" ]; then
|
|
python -u -m streamlit run scripts/webui_streamlit.py
|
|
else
|
|
python3 -u scripts/webui.py --outdir /output --ckpt /data/StableDiffusion/model.ckpt ${CLI_ARGS}
|
|
fi
|