Forrest logo
back to the rails tool

rails:tldr:04dd2

rails: Start local server for current project on a specified port.
$ rails server -p "${port}"
try on your machine

The command "rails server -p ${port}" is used to start the Rails server on a specified port.

  • "rails server" starts the Rails server.
  • "-p" specifies the option that follows it as the port number.
  • "${port}" is a placeholder for the actual port number you want to use.

For example, if you want to start the Rails server on port 3000, you would use the command "rails server -p 3000".

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the rails tool