13. The Rails Server Command

  • We'll learn how to use the rails server command.
  • This command will only work from inside the Rails application directory.

###Terminal

cd
cd workspace
cd saasapp
bundle exec rails server -b $IP -p $PORT
(The shorthand version of the command is...)
bundle exec rails s -b $IP -p $PORT

Complete and Continue