I\'ve created small web server using werkzeug and I\'m able to run it in usual python way with python my_server.py. Pages load, everything works fine. Now I wan
python my_server.py
One simple way to do is using crontab:
$ crontab -e
A crontab file will appear for editing, write the line at the end:
@reboot python myserver.py
and quit. Now, after each reboot, the cron daemon will run your myserver python script.