Fixes: Removed naive datetime warning Extra: Correct import in elasticsearch submodule.
8 lines
239 B
Bash
8 lines
239 B
Bash
#!/usr/bin/bash
|
|
set -e
|
|
|
|
# wait for auxiliary services
|
|
uv run python manage.py await_services
|
|
|
|
# run stock_updater
|
|
uv run celery -A evibes worker --pool=prefork --concurrency=1 --queues=stock_updater --loglevel=info --max-tasks-per-child=1
|