mirror of
https://github.com/frappe/frappe_docker.git
synced 2025-02-11 00:18:47 +00:00
8 lines
158 B
Python
8 lines
158 B
Python
import os, frappe
|
|
from frappe.utils.background_jobs import start_worker
|
|
|
|
queue = os.environ.get("WORKER_TYPE", "default")
|
|
start_worker(queue, False)
|
|
|
|
exit(0)
|