We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
By default, Angelo will start on port 4567.
In a modular style app, the port number can be set as a parameter to run! as follows:
run!
require 'angelo' class WebServer < Angelo::Base get '/' do "Hello world" end end WebServer.run!('localhost', 4568)