如何在Windows中运行已完成的Ruby on Rails应用程序?

时间:2015-02-16 16:46:13

标签: ruby-on-rails ruby windows

我的朋友给我发了一封示例应用程序,其中包含文件夹" app,bin,config db lib log public test tmp vendor"和文件" gitignore,config.ru,gemfile,gemfile.lock,rakefile,readme.rdoc"

我已经在我的计算机上配置了RoR并让你的世界正常工作。但是我该如何开始运行他的示例程序呢?我对从命令行采取的步骤感到非常困惑。

3 个答案:

答案 0 :(得分:1)

如果安装并运行了ruby,请运行cmd.exe并转到朋友的应用程序目录

cd myfriendsApp

您只需输入命令

即可
"rails server" (without quotes)

并在http://localhost:3000

的浏览器中查看结果

答案 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)

  1. 确保您已安装bundler
  2. gem install bundler

    1. cd到您的应用程序目录
    2. cd path\to\application

      1. 运行bundle install - 这将安装运行rails应用程序所需的所有依赖项。

      2. 确保已安装/配置数据库。点击config\database.yml查看development设置。

      3. 运行rake db:create db:migrate db:seed - 这将创建数据库架构,添加种子数据。

      4. 最后,运行rails server