1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- threads_count = ENV.fetch("RAILS_MAX_THREADS") { 5 }
- threads threads_count, threads_count
- port ENV.fetch("PORT") { 3000 }
- environment ENV.fetch("RAILS_ENV") { "development" }
- plugin :tmp_restart
|