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