mirror of
https://github.com/linyqh/NarratoAI.git
synced 2025-12-11 18:42:49 +00:00
8 lines
194 B
Bash
8 lines
194 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$1" = "webui" ]; then
|
|
exec streamlit run webui.py --browser.serverAddress=127.0.0.1 --server.enableCORS=True --browser.gatherUsageStats=False
|
|
else
|
|
exec "$@"
|
|
fi |