문제

Simple question but I cannot find the answer anywhere, all posts are about how to run cron inside a fabric script. But how can I run a fabric script on my crontab? Something like this:

00 00 * * * /project/folder/fab deploy
도움이 되었습니까?

해결책

Found the answer, this is my crontab to run a fabric script:

00 00 * * * cd /project/folder && fab deploy
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top