Celeryやその他のもの(データベースなど)を初期化する必要のあるアプリケーションがあります。アプリケーション構成を含む.iniファイルが欲しいのですが。これは、実行時にアプリケーションに渡す必要があります。
development.init:
[celery]
broker=amqp://localhost/
backend=amqp://localhost/
task.result.expires=3600
[database]
# database config
# ...
celeryconfig.py:
from celery import Celery
import ConfigParser
config = ConfigParser.RawConfigParser()
config.read(...) # Pass this from the command line somehow
celery = Celery('myproject.celery',
broker=config.get('celery', 'broker'),
backend=config.get('celery', 'backend'),
include=['myproject.tasks'])
# Optional configuration, see the application user guide.
celery.conf.update(
CELERY_TASK_RESULT_EXPIRES=config.getint('celery', 'task.result.expires')
)
# Initialize database, etc.
if __name__ == '__main__':
celery.start()
セロリを始めるために、私は電話します:
celery worker --app=myproject.celeryconfig -l info
環境変数を設定するような醜いことをせずに設定ファイルを渡す方法はありますか?