1
Hello. Make sure you are in the correct directory. It is a very common mistake to create a project rails new nome_do_projeto
and then give rails s
, but you’re out of the project directory.
Then you just enter the directory ex: cd nome_do_projeto
and then give a rails s
STEP BY STEP:
rails new nome_do_projeto
cd nome_do_projeto
rails s
Use the command ls
whenever possible to ensure that you are in the correct directory.