@reactive said in Mixpost Lite Install Guide for LAMP App:
Okay I managed to make it work, there was another typo in step 7, this is the correct script to make it work:
#!/bin/bash
# Place custom startup commands here
sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan horizon &
sudo -u www-data /usr/bin/php /app/data/mixpostapp/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3 &
fyi I'm just using it in the cron section:
* * * * * cd .. && cd data/public/mixpost-enterprise-app && php artisan schedule:run >> /app/data/null 2>&1
@service cd .. && cd data/public/mixpost-enterprise-app && php artisan horizon