module HTTP
Falcon (TCP/HTTP) environment for Lively applications.
Combines Falcon::Environment::Server for HTTP transport with
module Lively::Environment::Middleware for application and asset serving.
Definitions
def url
The URL this server binds to.
Signature
-
returns
String
Implementation
def url
ENV.fetch("LIVELY_URL", "http://localhost:9292")
end
def count
The number of worker processes/threads to run.
Signature
-
returns
Integer
Implementation
def count
1
end