I used to run my pyramid server as a daemon with the pserve --daemon
command.
Given that it's deprecated, I'm looking for the best replacement. This link recommends to run it with screen
or tmux
, but it seems too heavy to just run a web server. Another idea would be to launch it with setsid.
What would be a good way to run it ?