I made a small web service using Node.js and PhantomJS, and deployed it to Google app engine using its flexible environments... The problem is, the service is used only for half an hour each day, but the VM instances is running all time and I pay for that... So I need to be automatically able to start the instance(s) before scheduled run time of my app, and then automatically stop them I tried use Cron jobs to call start/stop via the API, as in here, but it failed..
Thanks for advance