fix(ansible): use full path for uv binary in shell tasks

main
Sven Geboers 1 month ago
parent de6ed29bf7
commit 22067fd162
  1. 4
      ansible/deploy.yaml

@ -33,7 +33,7 @@
- name: sync dependencies with uv
ansible.builtin.shell:
cmd: uv sync
cmd: /home/webapps/.local/bin/uv sync
chdir: ~/motief
- name: stop existing streamlit process
@ -42,5 +42,5 @@
- name: start streamlit
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

Loading…
Cancel
Save