Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey friend,
Great question! Figure out how frequently you want it to run and use this: https://crontab-generator.org/
When it gives you the full crontab line entry, run “crontab -e” via SSH and paste it at the bottom of the file, save it and you’re set :)
Jarland
Here’s the command to run to enter the crontab utility where you can copy/paste the cron job:
crontab -u <user> -e
Then paste the command like this:
*/10 * * * * /usr/bin/wget --delete-after https://mysite.com/starter.php >/dev/null 2>&1
Save with the editor and that’s it.