fix(ansible): use full path for uv binary in shell tasks
This commit is contained in:
+2
-2
@@ -33,7 +33,7 @@
|
|||||||
|
|
||||||
- name: sync dependencies with uv
|
- name: sync dependencies with uv
|
||||||
ansible.builtin.shell:
|
ansible.builtin.shell:
|
||||||
cmd: uv sync
|
cmd: /home/webapps/.local/bin/uv sync
|
||||||
chdir: ~/motief
|
chdir: ~/motief
|
||||||
|
|
||||||
- name: stop existing streamlit process
|
- name: stop existing streamlit process
|
||||||
@@ -42,5 +42,5 @@
|
|||||||
|
|
||||||
- name: start streamlit
|
- name: start streamlit
|
||||||
ansible.builtin.shell:
|
ansible.builtin.shell:
|
||||||
cmd: nohup uv run streamlit run Home.py --server.port=8501 --server.address=0.0.0.0 &
|
cmd: nohup /home/webapps/.local/bin/uv run streamlit run Home.py --server.port=8501 --server.address=0.0.0.0 &
|
||||||
chdir: ~/motief
|
chdir: ~/motief
|
||||||
|
|||||||
Reference in New Issue
Block a user