logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Control Rails Server - Run App with Puma | Online Free DevTools by Hexmos

Control Rails server instances with this command. Easily manage ports and environments for development or testing. Free online tool, no registration required.

rails-server

Serve the Rails app in the current directory using the Puma web server, which comes bundled with Rails. More information: https://guides.rubyonrails.org/command_line.html#bin-rails-server.

  • Run the web server:

rails server

  • Run the web server on a specified port:

rails server {{[-p|--port]}} {{port_number}}

  • Run the web server on a specified IP address:

rails server {{[-b|--binding]}} {{ip_address}}

  • Run the web server on a specified environment:

rails server {{[-e|--environment]}} {{environment}}

  • Display help:

rails server {{[-h|--help]}}

See Also