Üretime dağıtmak için git push kullanıyorum ve bir komut dosyası çalıştırmak için git kancaları ayarlıyorum. Bu yaklaşımın avantajı, geçiş ve paket kurulumunuzu aynı anda yapabilmenizdir. https://mikeeverhart.net/2013/01/using-git-to-deploy-code/
mkdir -p /home/git/project_name.git
cd /home/git/project_name.git
git init --bare
Ardından bir komut dosyası oluşturun /home/git/project_name.git/hooks/post-receive
.
#!/bin/bash
GIT_WORK_TREE=/path/to/project git checkout -f
source /path/to/virtualenv/activate
pip install -r /path/to/project/requirements.txt
python /path/to/project/manage.py migrate
sudo supervisorctl restart project_name
Emin olun chmod u+x post-receive
ve sudoers'a kullanıcı ekleyin. sudo supervisorctl
Parola olmadan çalışmasına izin verin . https://www.cyberciti.biz/faq/linux-unix-running-sudo-command-without-a-password/
Yerel / geliştirme sunucumdan, git remote
üretim sunucusuna göndermeme izin verecek şekilde ayarladım
git remote add production ssh://user_name@production-server/home/git/project_name.git
# initial push
git push production +master:refs/heads/master
# subsequent push
git push production master
Bonus olarak, komut dosyası çalışırken tüm istemleri göreceksiniz. Böylece, geçiş / paket kurulumu / gözetmen yeniden başlatmasıyla ilgili herhangi bir sorun olup olmadığını göreceksiniz.
kill -HUP
PID işlemi yapmam , bunun yerine supervisorctl kullanıyorum. Yine de bunun çok değiştiğini düşünmeyin.