私は、簡単なrails3.1アプリケーションのデプロイメントに苦労しています。 2つの主な問題があるようです。rails3.1 herokuデプロイメントに多くの問題がある
- アセットパイプラインのため、アセットは本番環境ではロードされません。
- 私はデフォルトdb sqlite3で開発します。 Herokuはpostgresqlを使用します。
基本的には、私の開発から展開までのワークフローを可能な限りシームレスにしたいと考えています。誰でも私の開発環境をセットアップする最良の方法をお勧めしますので、$ git push herokuを実行すると、すべてがうまく動作します。
私は、開発環境でpostgresqlを使用することをお勧めします。これを設定する方法については誰でも良い記事がありますか?
ユニコーンを使用する必要がありますか?薄いです?
私が聞いたことのない他の宝石を使っているべきですか?
開発環境でかなりクールなものを作ることができても、アプリをオンラインにする手がかりがないので、私は不満を感じます。たぶん私はこれをすべて間違って見ている。お知らせ下さい。
私がしようとすると、私はこのエラーを取得する:
group :production do
gem 'pg'
end
Installing pg (0.11.0) with native extensions /home/work/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb:552:in `rescue in block in build_extensions': ERROR: Failed to build gem native extension. (Gem::Installer::ExtensionBuildError)
/home/work/.rvm/rubies/ruby-1.9.2-p290/bin/ruby extconf.rb
checking for pg_config... no
No pg_config... trying anyway. If building fails, please try again with
--with-pg-config=/path/to/pg_config
checking for libpq-fe.h... no
Can't find the 'libpq-fe.h header
*** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers. Check the mkmf.log file for more
details. You may need configuration options.
Provided configuration options:
--with-opt-dir
--without-opt-dir
--with-opt-include
--without-opt-include=${opt-dir}/include
--with-opt-lib
--without-opt-lib=${opt-dir}/lib
--with-make-prog
--without-make-prog
--srcdir=.
--curdir
--ruby=/home/work/.rvm/rubies/ruby-1.9.2-p290/bin/ruby
--with-pg
--without-pg
--with-pg-dir
--without-pg-dir
--with-pg-include
--without-pg-include=${pg-dir}/include
--with-pg-lib
--without-pg-lib=${pg-dir}/lib
--with-pg-config
--without-pg-config
--with-pg_config
--without-pg_config
という開発を使って指定します。ちょうど新しいプレーンレールアプリでそれを試して、レールのロゴが表示されます。今私は実際のアプリで試してみるつもりです。ありがとう –
私の実際のアプリケーションでは動作しません。ただ500エラーページを取得し続ける –
あなたのdevマシンのpg gemに問題がある場合は、[こちら](https://bitbucket.org/ged/ruby-pg/wiki/Home)をお読みください – trogdor33