Switch from pipenv to poetry

This commit is contained in:
Jan Dittberner 2023-02-19 18:19:27 +01:00
parent c60751e161
commit 2575afb9f9
6 changed files with 1006 additions and 481 deletions

View file

@ -2,6 +2,10 @@
set -e
. /home/gvamysql/gvamysql-venv/bin/activate
cd /srv/gvamysql/gvamysql
celery -A mysqltasks worker -Q mysql -l info
QUEUE=mysql
TASKS=${QUEUE}tasks
APP=gvamysql
. "/srv/${APP}/.venv/bin/activate"
cd /srv/${APP}/${APP}
celery -A "${TASKS}" worker -Q "${QUEUE}" -l info