We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d25665 commit 05241fcCopy full SHA for 05241fc
habitat/hooks/run
@@ -8,7 +8,7 @@ if [ "$(whoami)" = "root" ]; then
8
exec chpst \
9
-U root:hab \
10
-u root:hab \
11
- streamlit run "{{pkg.path}}/dash_app.py" 2>&1
+ streamlit run "{{pkg.path}}/st_app.py" 2>&1
12
else
13
- exec streamlit run "{{pkg.path}}/dash_app.py" 2>&1
+ exec streamlit run "{{pkg.path}}/st_app.py" 2>&1
14
fi
habitat/plan.sh
@@ -68,6 +68,7 @@ do_build() {
68
do_install() {
69
mkdir "${pkg_prefix}/defaults/"
70
cp -pr ${PLAN_CONTEXT}/../src/* "${pkg_prefix}/"
71
+ cp -pr ${PLAN_CONTEXT}/../st_app.py "${pkg_prefix}/"
72
cp -pr ${PLAN_CONTEXT}/../defaults/webapp.cfg "${pkg_prefix}/defaults/"
73
return $?
74
}
0 commit comments