Why does my rails command always create a new application?

前端 未结 6 2049
执笔经年
执笔经年 2021-02-19 06:20

Forgive me as I\'m new to both *nix and ruby on rails. My rails command always creates a new application and I can\'t figure out why. Running \"rails new myApp\" will just gen

6条回答
  •  日久生厌
    2021-02-19 07:19

    Rails 2.3.5

    rails new       # will create a project new 
    rails new myapp # still will create a project new
    rails server    # will create a project server
    

    to run the server : cd script ( a directory in your project folder ) and then run ./server

提交回复
热议问题