mirror of
https://github.com/frappe/frappe_docker.git
synced 2025-04-07 09:41:51 +00:00
8 lines
138 B
Python
8 lines
138 B
Python
import frappe
|
|
from frappe.utils.scheduler import start_scheduler
|
|
|
|
print("Starting background scheduler . . .")
|
|
start_scheduler()
|
|
|
|
exit(0)
|