3

我刚刚启动了一个新应用程序,并且能够将其推送到 Heroku,但我似乎无法访问控制台。

我正在运行的命令是:

heroku run console --app myappname

我得到的是:

Running `console` attached to terminal... up, run.3951 Usage:   rails
new APP_PATH [options]

Options:   -r, [--ruby=PATH]              # Path to the Ruby binary of
your choice
                                 # Default: /app/vendor/ruby-1.9.3/bin/ruby   -b, [--builder=BUILDER]        #
Path to a application builder (can be a filesystem path or URL)   -m,
[--template=TEMPLATE]      # Path to an application template (can be a
filesystem path or URL)
      [--skip-gemfile]           # Don't create a Gemfile
      [--skip-bundle]            # Don't run bundle install   -G, [--skip-git]               # Skip Git ignores and keeps   -O,
[--skip-active-record]     # Skip Active Record files   -S,
[--skip-sprockets]         # Skip Sprockets files   -d,
[--database=DATABASE]      # Preconfigure for selected database
(options:
mysql/oracle/postgresql/sqlite3/frontbase/ibm_db/sqlserver/jdbcmysql/jdbcsqlite3/jdbcpostgresql/jdbc)
                                 # Default: sqlite3   -j, [--javascript=JAVASCRIPT]  # Preconfigure for selected JavaScript
library
                                 # Default: jquery   -J, [--skip-javascript]        # Skip JavaScript files
      [--dev]                    # Setup the application with Gemfile pointing to your Rails checkout
      [--edge]                   # Setup the application with Gemfile pointing to Rails repository   -T, [--skip-test-unit]         # Skip
Test::Unit files
      [--old-style-hash]         # Force using old style hash (:foo =    'bar') on Ruby >= 1.9

Runtime options:   -f, [--force]    # Overwrite files that already
exist   -p, [--pretend]  # Run but do not make any changes   -q,
[--quiet]    # Suppress status output   -s, [--skip]     # Skip files
that already exist

Rails options:   -h, [--help]     # Show this help message and quit  
-v, [--version]  # Show Rails version number and quit

Description:
    The 'rails new' command creates a new Rails application with a default
    directory structure and configuration at the path you specify.

    You can specify extra command-line arguments to be used every time
    'rails new' runs in the .railsrc configuration file in your home directory.

    Note that the arguments specified in the .railsrc file don't affect the
    defaults values shown above in this help message.

Example:
    rails new ~/Code/Ruby/weblog

    This generates a skeletal Rails installation in ~/Code/Ruby/weblog.
    See the README in the newly created application to get going.

我知道,应用程序名称是正确的,因为我刚刚推送它并加载它。

当我暂时查看 Heroku 上的日志时,当我尝试点击控制台时,我看到以下内容:

2013-07-01T16:21:58.780979+00:00 heroku[api]: Starting process with command `bundle exec rails console` by mzaragoza@myemail.com
2013-07-01T16:22:09.000482+00:00 heroku[run.2993]: Awaiting client
2013-07-01T16:22:09.055474+00:00 heroku[run.2993]: Starting process with command `bundle exec rails console`
2013-07-01T16:22:10.342966+00:00 heroku[run.2993]: State changed from starting to up
2013-07-01T16:22:13.870963+00:00 heroku[run.2993]: Process exited with status 0
2013-07-01T16:22:13.889703+00:00 heroku[run.2993]: State changed from up to complete
4

4 回答 4

9

怎么样heroku run rails c?如果你添加它有什么不同rails吗?

PS:我不确定你是想从评论中访问 Rails 的控制台还是只是一个普通的 shell。

于 2013-12-24T00:09:01.203 回答
2

正确的形式是 =>heroku run "any rails command here"

于 2013-12-28T00:11:22.103 回答
1

当我升级到 Rails > 4.0.0 时遇到了这个问题。解决方案是在本地运行以下命令rake rails:update:bin。这将在应用程序的根目录中生成一个 bin 目录。确保它不在您的.gitignore文件中。提交然后将更改推送到 Heroku。

于 2014-09-04T12:15:00.977 回答
0

对于 3.2.x 应用程序:

script/rails当我从我的仓库中删除并推送到 Heroku时,这也发生在我身上。恢复提交并推动该更改使事情再次起作用。

于 2015-08-31T16:46:23.827 回答