#!/bin/sh

set -o errexit
set -o nounset


rm -f './celerybeat.pid'
celery -A django_structlog_demo_project.taskapp beat -l INFO
