문제

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