How to get Sinatra to auto-reload the file after each change?

后端 未结 9 457
梦谈多话
梦谈多话 2020-12-07 09:39

I am using

# my_app.rb
load \'index.rb\'

and start the sever like this

ruby my_app.rb

but it never relo

9条回答
  •  醉梦人生
    2020-12-07 10:02

    When you run the application with Passenger Standalone, just create a tmp/always_restart file:

    $ touch tmp/always_restart.txt
    

    See Passenger documentation for more info.

提交回复
热议问题