
rails
List of commands for rails:
-
rails:tldr:04dd2 rails: Start local server for current project on a specified port.$ rails server -p "${port}"try on your machineexplain this command
-
rails:tldr:32789 rails: Create a new rails project.$ rails new "${project_name}"try on your machineexplain this command
-
rails:tldr:55c9d rails: Start local server for current project on port 3000.$ rails servertry on your machineexplain this command
-
rails:tldr:bf940 rails: Open console to interact with application from command-line.$ rails consoletry on your machineexplain this command
-
rails:tldr:f31b4 rails: Check current version of rails.$ rails --versiontry on your machineexplain this command