mirror of
https://github.com/frappe/frappe_docker.git
synced 2025-02-04 21:18:28 +00:00
13 lines
214 B
Python
13 lines
214 B
Python
import os
|
|
from frappe.utils.background_jobs import start_worker
|
|
|
|
|
|
def main():
|
|
queue = os.environ.get("WORKER_TYPE", "default")
|
|
start_worker(queue, False)
|
|
exit(0)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|