mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-11-10 15:20:55 +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)
|