使用Sqlite3将RoR应用程序部署到Heroku失败

编程入门 行业动态 更新时间:2024-10-24 08:31:25
本文介绍了使用Sqlite3将RoR应用程序部署到Heroku失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我试图将我的第一个应用程序部署到Heroku。我使用Sqlite作为数据库。据我所知Heroku不使用Sqlite - 它会在后端切换到Postgres。

I'm trying to deploy my first app to Heroku. I'm using Sqlite as the database. As far as I know Heroku doesn't use Sqlite - it switches to Postgres in the backend.

当我部署时,我收到以下错误:

When I'm deploying I get the following error:

/usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/runtime.rb:64 :`require':没有这样的文件加载 - sqlite3(LoadError)

/usr/ruby1.8.7/lib/ruby/gems/1.8/gems/bundler-1.0.0/lib/bundler/runtime.rb:64:in `require': no such file to load -- sqlite3 (LoadError)

我的gemfile (这是我假设是导致这个问题)看起来如下:

My gemfile (which is what I assume is causing this problem) looks as follows:

source 'rubygems' gem 'rails', '3.0.0' gem 'sqlite3-ruby', '1.2.5', :require => 'sqlite3'

我做错了什么?

推荐答案

Heroku不支持SQLite数据库。您需要在生产时使用PostgreSQL,如我也在本文中解释了。

Heroku doesn't support SQLite databases. You need to use PostgreSQL on production, as I also explained in this post.

group :production do gem "pg" end group :development, :test do gem "sqlite3", "~> 1.3.0" end

实际上,建议在开发/测试环境中尽可能接近生产环境。因此,我建议您将所有环境切换到PostgreSQL。

Actually, it's recommended to use in development/test an environment as close as possible to production. Therefore, I suggest you to switch all your environments to PostgreSQL.

# replace gem "sqlite3" with gem "pg"

更多推荐

使用Sqlite3将RoR应用程序部署到Heroku失败

本文发布于:2023-10-23 02:14:13,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1519439.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:应用程序   RoR   Heroku

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!