Creating Your First Rails App
Let’s create your first Rails application:
1. Generate a new app:
rails new blog_appThis creates a folder with all required files and folders.
2. Move into the folder:
cd blog_app3. Start the server:
rails serverVisit http://localhost:3000 to see your app running!
