我有一个基于瓶子(python)框架工作的web应用程序,我想在守护进程模式下运行它。有没有办法在守护进程模式下运行它
谢谢
答案 0 :(得分:2)
当然可以。在您的操作系统上安装BottleDaemon 0.1.0,然后更改您的路由器文件:
from bottledaemon import daemon_run
from bottle import route
@route("/hello")
def hello():
return "Hello World"
# The following lines will call the BottleDaemon script and launch a daemon in the background.
if __name__ == "__main__":
daemon_run()