...
/Running the Application with the bin/run Command
Running the Application with the bin/run Command
Learn about executing the Rails application through the bin/run command.
We'll cover the following...
Let’s run our application
Currently, we can run our Rails app like so:
bin/rails server --binding=0.0.0.0
While this is easy enough to remember, our app will one day require more complex commands to run it locally. Following our pattern of using scripts instead of documentation, we’ll create bin/run
to ...