Jump to

step1-l3-5-cron

(random out of 24)

🔔 Additional information for your question database repository !

If you make a change on the database folder, this will be taken automatically into account by TestAPI. So any push on the git repository will change the website if pulled on the server. To avoid doing it manually, you can simply set a cron job like this :

crontab -e

This open a terminal editor for the cron settings, on which you can simply add the following line :

*/1 * * * * cd /path/to/my/question/database/folder && git pull

Then save and close. This will simply automatically run a git pull command on your database repository every minutes, so any changes on the question database in git will be quickly integrated to the website.

???