mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 09:02:08 +02:00

Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Seth Falco <seth@falco.fun> Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
491 B
491 B
rails
A server-side MVC framework written in Ruby. More information: https://guides.rubyonrails.org/command_line.html.
- Create a new rails project:
rails new "{{project_name}}"
- Start local server for current project on port 3000:
rails server
- Start local server for current project on a specified port:
rails server -p "{{port}}"
- Open console to interact with application from command-line:
rails console
- Check current version of rails:
rails --version