FEAT: chuẩn bị thư viện để tạo file exe trên window

This commit is contained in:
2026-08-08 09:44:37 +00:00
parent 9ef622f29a
commit 0a1f3efd64
21 changed files with 536 additions and 4 deletions
+10
View File
@@ -27,6 +27,16 @@ celery_app.conf.update(
enable_utc=True,
)
# Che do desktop (SF_DESKTOP=1, do desktop_engine.py set): chay task dong bo
# trong tien trinh (eager) — ban Standalone Windows KHONG kem Redis broker.
if os.getenv("SF_DESKTOP") == "1":
celery_app.conf.update(
task_always_eager=True,
task_eager_propagates=True,
broker_url="memory://",
result_backend="cache+memory://",
)
# ── Lịch trình tự động dọn dẹp file hết hạn (Week 5) ──
celery_app.conf.beat_schedule = {
"cleanup-expired-files-every-hour": {