mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
7 lines
138 B
Python
7 lines
138 B
Python
import frappe
|
|
from frappe.utils.scheduler import start_scheduler
|
|
|
|
print("Starting background scheduler . . .")
|
|
start_scheduler()
|
|
|
|
exit(0)
|