Frederico Barbosa wrote in post #949839: > Hello People, > > I cant publish Ruby on Rails application on HEROKU. It says "file > sqlite3 is missing".
Let's see the error trace. > But I know its not missing and the application > runs allright on my computer. > > Is it true that I should stop using SQLITE as database and replace it > for POSTGRES ? > > HEROKU works only with POSTGRES on a Ruby On Rails application ? Heroku uses PostgreSQL -- a good thing, since SQLite is not appropriate for production use. You can still develop locally with SQLite, or you can install PostgreSQL locally for development. I've done it both ways. > > Thanks a Lot > Frederico Best, -- Marnen Laibow-Koser http://www.marnen.org [email protected] -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

