PricePower/Taskfile.yml

16 lines
515 B
YAML
Raw Normal View History

2024-08-07 23:31:21 +00:00
# https://taskfile.dev
version: '3'
tasks:
2024-08-07 23:34:21 +00:00
dev :
cmds:
- fastapi dev calculator/main.py --reload
2024-08-07 23:31:21 +00:00
deploy:
cmds:
- ssh -p 11335 app@ssh.rosti.cz mkdir -p /srv/app/cache
- rsync -av -e "ssh -p 11335" --delete ./calculator app@ssh.rosti.cz:/srv/app/
- rsync -av -e "ssh -p 11335" ./requirements.txt app@ssh.rosti.cz:/srv/app/
- ssh -p 11335 app@ssh.rosti.cz /srv/venv/bin/pip install -r /srv/app/requirements.txt
- ssh -p 11335 app@ssh.rosti.cz supervisorctl restart app