We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 63b0dd2 + 4534557 commit 697f4e1Copy full SHA for 697f4e1
dev/vagrant-config/scripts/laravel.sh
@@ -25,4 +25,8 @@ php artisan db:seed
25
# need to install node
26
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
27
apt-get install -y nodejs > /dev/null 2>&1
28
-npm install --global gulp-cli yarn
+npm install --global gulp-cli yarn
29
+
30
+# Setup task scheduler cron
31
+line="* * * * * php /vagrant/artisan schedule:run >> /dev/null 2>&1"
32
+(crontab -u vagrant -l 2>/dev/null; echo "$line" ) | crontab -u vagrant -
0 commit comments