J'utilise un hook de post-réception Github pour exécuter un fichier bash qui extrait mes deux dépôts.
#!/bin/sh
cd ~/public_html/repo_static
env -i /usr/bin/git pull origin master
cd ~/django-code/repo_django
env -i /usr/bin/git pull origin master
Je veux aussi collectstatic
sur le repo Django. Comment automatiser la réponse « oui » à cela ?
Je ne peux pas utiliser Fabric car malheureusement l'équipe a choisi de travailler avec Python 2.4 pour le moment. Existe-t-il un moyen d'automatiser collectstatic sans Fabric ?