1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Note "-s" (server) command line option in README

This commit is contained in:
Karel Minarik 2009-01-15 15:08:40 +01:00 committed by Ryan Tomayko
parent 661090eb53
commit f29486ba3a

View file

@ -464,13 +464,14 @@ friends.
Sinatra applications can be run directly:
ruby myapp.rb [-h] [-x] [-p PORT] [-e ENVIRONMENT]
ruby myapp.rb [-h] [-x] [-e ENVIRONMENT] [-p PORT] [-s HANDLER]
Options are:
-h # help
-p # set the port (default is 4567)
-e # set the environment (default is development)
-s # specify rack server/handler (default is thin)
-x # turn on the mutex lock (default is off)
== Contributing