mirror of
https://git.oceanpay.cc/danial/kami_apple_exchage.git
synced 2025-12-18 22:29:09 +00:00
- Create README.md for deployment instructions including environment requirements and setup steps. - Implement deploy.sh script for automated deployment of development and production environments. - Add combined Docker Compose configuration for frontend and backend services. - Include Redis configuration file for optimized memory management and persistence. - Update frontend Dockerfile to handle Next.js asset paths and static files. - Remove obsolete deployment files and configurations from frontend directory.
11 lines
194 B
Python
11 lines
194 B
Python
"""
|
|
Celery任务模块
|
|
"""
|
|
|
|
from app.core.celery_app import celery_app
|
|
|
|
# 导入所有任务模块以确保任务被注册
|
|
from . import crawler_tasks
|
|
|
|
__all__ = ["celery_app", "crawler_tasks"]
|