CRON job not running on Plesk / Passenger hosting

Yes of course.

The main difference is how the application is started. It’s run via a server.js file like this:

const strapi = require('strapi');
strapi(/* {...} */).start();

The actual cron job being run is just a basic command from an Instagram plugin that checks for new Instagram posts every 30 mins. This command never gets run in the live environment however. The actual cron task definitely works fine as I’ve tested this in my development environment without problems.

Should cron tasks still function as normal with this sort of setup?