質問

I want to use Fabric so I can wrap all my production deployment steps:

  • git push to heroku
  • South migrations
  • collectstatic for static files to S3

I'm assuming that for the git push to heroku and the collectstatic I can just put their commands into a fabfile, correct? How would South migrations work?

正しい解決策はありません

他のヒント

Couldn't you just wrap the commands in a shell script?

deploy.sh

git push heroku master
heroku run python project/manage.py migrate
# Collect static command - not sure if you want to do this locally or from Heroku
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top