我有一个建立在 Bottle(python) 框架上的 Web 应用程序,我想在守护进程模式下运行它。有什么办法可以在守护进程模式下运行它

谢谢

最佳答案

你当然可以。在您的操作系统上安装 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()

10-08 19:20