我的朋友给我发了一封示例应用程序,其中包含文件夹" app,bin,config db lib log public test tmp vendor"和文件" gitignore,config.ru,gemfile,gemfile.lock,rakefile,readme.rdoc"
我已经在我的计算机上配置了RoR并让你的世界正常工作。但是我该如何开始运行他的示例程序呢?我对从命令行采取的步骤感到非常困惑。
答案 0 :(得分:1)
如果安装并运行了ruby,请运行cmd.exe并转到朋友的应用程序目录
cd myfriendsApp
您只需输入命令
即可"rails server" (without quotes)
的浏览器中查看结果
答案 1 :(得分:1)
在命令行中,导航到您朋友的文件夹。执行以下操作:
rake db:create # to create the database
rake db:migrate # to do the migrations to build the schema of the db
rails s #start a server
这应该全部运行没有错误。如果是这种情况,请转到浏览器中的http://localhost:3000
。
答案 2 :(得分:1)
bundler
: gem install bundler
cd
到您的应用程序目录 cd path\to\application
运行bundle install
- 这将安装运行rails应用程序所需的所有依赖项。
确保已安装/配置数据库。点击config\database.yml
查看development
设置。
运行rake db:create db:migrate db:seed
- 这将创建数据库架构,添加种子数据。
最后,运行rails server
。