自動化無しに生活無し

WEBとかAIとかLinux関係をひたすら書く備忘録系ブログ

【Heroku】デプロイ直後にコマンドを実行する【Procfile編集】

thumbnail

例えば、Djangoのデプロイ時に、マイグレーションをしてほしいのであれば、

release: python manage.py migrate
web: gunicorn config.wsgi:application --log-file -

とする。

並列で処理を実行して欲しい場合

worker を使う。

release: python manage.py migrate
worker: python manage.py custom_command
web: gunicorn config.wsgi:application --log-file -

参照

https://devcenter.heroku.com/articles/procfile

スポンサーリンク

シェアボタン

Twitter LINEで送る Facebook はてなブログ