I have a web service deployed on my local machine. Its built on Pyramid web framework. This command starts my server on port 6543.
pserve --reload development.ini
Okay my question is this. When I reboot my machine, I want my service to start at boot time. It shouldn't require manual intervention to reload and pserve again when the host machine restarts.
Does this task require any startup script?
Can anyone please tell me how to accomplish this and point me in the right direction?
I don't have experience with EC2, but I've run Pyramid apps on a shared host (Webfaction) and they use a cron script that runs every 20 minutes; if the pyramid service isn't running it starts it up. I don't have the exact script contents at the moment but I can look it up and add it.
Alternatively, I came across this to run a cron task at startup:
From Ask Ubuntu: