7
8
9
10
11
12
13
14
15
16
|
# File 'bridgetown-core/lib/bridgetown-core/commands/start.rb', line 7
def self.include_options(klass)
klass.option "-P/--port <NUM>",
"Serve your site on the specified port. Defaults to 4000",
type: Integer
klass.option "-B/--bind <IP>", "IP address for the server to bind to"
klass.option "--skip-frontend",
"Don't load the frontend bundler (always true for production)"
klass.option "--skip-live-reload",
"Don't use the live reload functionality (always true for production)"
end
|