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