■ Magento 2 Run cron 필요 시 크론 강제로 돌려볼때 사용할 수 있음 ■ terminal or iterm group별 cron 돌리기 *특정 group cron 돌릴경우 default 가 아닌 group id 변경해주면 됨 php bin/magento cron:run --group default ■ 특정 페이지 호출 시 cron 돌려보고 싶은 경우 $cron = \Magento\Framework\App\ObjectManager::getInstance() ->create('Vendor\Module\Cron\Test'); $cron->execute(); ■ 예시 **Note if using Nginx you can put these files in the pub/ folder and adj..